Creates a temporary download URL for the delivery note of the given payment transaction.
Headers
-
Determines the file type of the download. If the requested media type is not supported, a 406 Not Acceptable response is returned.
Responses
-
The delivery note download has been created successfully.
-
The request parameters are invalid or missing.
-
Client authentication failed.
-
Missing one or more required scopes.
-
The payment transaction or delivery note was not found.
-
The requested media type is not supported.
-
An internal server error occurred.
POST
/2026-2/payment-transactions/{paymentTransactionId}/downloads/delivery-note
curl \
--request POST 'https://api.pace.cloud/payment/2026-2/payment-transactions/6e40be56-ef5f-4a86-a666-aa7a89f39e26/downloads/delivery-note' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Accept: string"
Response examples (201)
{
"data": {
"downloadURL": "https://example.com/delivery-note.pdf",
"expiresAt": "2026-01-29T12:00:00.000Z"
}
}