Skip to main content
Version: v2023.18.0

GET all conversion orders

This API allows you to retrieve all conversion orders. 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:

GET /conversions

Response:

AttributeTypeDescription
conversionOrdersList<ConversionOrder>The conversion orders list.

Examples

Get all conversion orders

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

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

Response sample:

[
{
"conversionOrderId": {
"id": "string"
},
"currentState": "QUEUED",
"documentId": "string",
"errorMessage": "string",
"format": "string",
"processedDate": "2023-06-19T16:12:24.476Z",
"processingTime": 0,
"queuedDate": "2023-06-19T16:12:24.476Z",
"queuedTime": 0
}
]