DELETE all conversion orders

This API allows you to delete all conversion orders previously requested. The call to this API must be authenticated. The credentials are available in the application.yaml configuration file of the document-service-broker.


run-mode :
  username : username
  password : password

API technical description

Endpoint:

DELETE /conversions

Examples

Delete all conversion orders in an authenticated way

The call below generates a request to delete all conversion orders. It is authenticated using the simple “Basic Authentication” method, considering the username: user and the password password.

curl -X 'DELETE' \
  'http://localhost:8761/conversions' \
  -H 'accept: */*' \
  -H 'Authorization: Basic dXNlcjpwYXNzd29yZA=='