Skip to main content

Document status


Check the processing and delivery status of a submitted invoice.

Endpoint

PropertyValue
URLGET /invoice/document-status/{trackingId}
MethodGET
AuthR-Auth: <company-jwt>

Example Request

curl --location '{{baseUrl}}/invoice/document-status/{{trackingId}}' \
--header 'R-Auth: {{companyJwt}}'

Path parameters

ParameterTypeRequiredDescription
trackingIdUUIDYesTracking ID returned from Send invoice

Response

{
"trackingId": "550e8400-e29b-41d4-a716-446655440000",
"companyId": "f5e6d7c8-1234-5678-9abc-def012345678",
"direction": "OUTGOING",
"documentType": "UBL",
"status": "COMPLETED",
"filename": "invoice-001.xml",
"invoiceNumber": "INV-2026-001",
"documentId": "aabbccdd-1234-5678-9abc-112233445566",
"sendingResult": "AS4_DELIVERED",
"errorType": null,
"createdAt": "2026-06-01T10:00:00",
"statusUpdatedAt": "2026-06-01T10:00:45",
"completedAt": "2026-06-01T10:00:45",
"errors": null
}

Response fields

FieldDescription
trackingIdTracking UUID returned from invoice submission
companyIdCompany UUID associated with the submitted document
directionDocument direction, for example OUTGOING
documentTypeDocument type, for example UBL
statusCurrent processing or delivery status
filenameGenerated or submitted invoice file name
invoiceNumberInvoice number from the submitted document
documentIdInternal document UUID
sendingResultDelivery result, for example AS4_DELIVERED
errorTypeError category if the document failed
createdAtTimestamp when the document was created
statusUpdatedAtTimestamp of the latest status update
completedAtTimestamp when processing was completed
errorsError details if available

Status values

StatusDescription
PENDINGAccepted and queued for processing
PROCESSINGCurrently being processed
COMPLETEDSuccessfully delivered
FAILEDDelivery failed. Check errorType and errors for details