DELETE all transformation orders

This API allows you to delete all transformation 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 /transformations

Examples

Delete all transformation orders in an authenticated way

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

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