Create a delivery note download for a payment transaction Beta

POST /2026-2/payment-transactions/{paymentTransactionId}/downloads/delivery-note

Creates a temporary download URL for the delivery note of the given payment transaction.

Headers

  • Accept string

    Determines the file type of the download. If the requested media type is not supported, a 406 Not Acceptable response is returned.

Path parameters

  • paymentTransactionId string(uuid) Required

    The unique identifier of the payment transaction to download the delivery note for.

Responses

  • 201 application/json

    The delivery note download has been created successfully.

    Hide response attribute Show response attribute object
    • data object Required

      The download details for the delivery note.

      Hide data attributes Show data attributes object
      • downloadURL string(uri) Required

        The download URL of the delivery note.

      • expiresAt string(date-time) Required

        The date and time when the download URL expires.

  • 400

    The request parameters are invalid or missing.

  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 404

    The payment transaction or delivery note was not found.

  • 406

    The requested media type is not supported.

  • 500

    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"
  }
}