v1

latestOpenAPI 3.0.02026-07-2421110121.4 KB
Transaction (v3)

Get an Acknowledgment

Returns the acknowledgment for the specified Transaction.

get/v3/transactions/{transactionId}/acknowledgment

Path parameters

transactionIdnumber required

The numeric transaction ID.

Headers

orderful-api-keystring required

Your Orderful API key.

Response

Acknowledgment details.

hrefstring required

Acknowledgment URL.

createdAtstring date-time required

Acknowledgment creation timestamp.

statusstring required

Acknowledgment status.

transactionIdstring required

Transaction ID.

Example response

{
  "href": "https://api.orderful.com/v3/transactions/000000/acknowledgment",
  "createdAt": "2026-03-03T00:36:28.099Z",
  "transaction": {
    "href": "https://api.orderful.com/v3/transactions/000000"
  },
  "transactionId": "123",
  "errors": [
    {
      "path": "/message",
      "code": "00",
      "message": "Message to show additional information on the error that occurred"
    }
  ]
}