Skip to main content
Version: v2023.18.0

GET a conversion order

This API allows you to retrieve a conversion order previously requested.

API technical description

Entry point:

GET /conversions/<ConversionOrderId>

Resource path:

VariableDescription
conversionOderIdThe ID of a conversion order.

Response:

AttributeTypeDescription
conversionOrderConversionOrderthe conversion order details.

Examples

Retrieve a conversion order

The call below generates a request to retrieve the conversion order with id 123e4567-e89b-12d3-a456-426614174000.

curl -X 'GET' \
'http://localhost:8761/conversions/123e4567-e89b-12d3-a456-426614174000' \
-H 'accept: */*'

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
}