Transactions API

get specific entry

GET /api/rest/customer/v1/transactions/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo2NCwiZXhwIjoxNzg2MzU5NzY0fQ.ICnAagGndbrzC1rh-uDJ0TLnjHPfrkfPks8KWtvjyPQ
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/transactions/c58006f5-f79f-487b-88f6-7f3391750499

Response

Headers

x-frame-options: SAMEORIGIN
x-xss-protection: 0
x-content-type-options: nosniff
x-permitted-cross-domain-policies: none
referrer-policy: strict-origin-when-cross-origin
content-type: application/vnd.api+json
vary: Accept
etag: W/"ab1f7175c8fcdf84cdcfdf125d1a5498"
cache-control: max-age=0, private, must-revalidate
x-request-id: 21b5d7d9-5780-4168-8f95-3305e4a53c36
x-runtime: 0.006833
content-length: 800

Status

200 OK

Body

{
  "data": {
    "id": "c58006f5-f79f-487b-88f6-7f3391750499",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/transactions/c58006f5-f79f-487b-88f6-7f3391750499"
    },
    "attributes": {
      "description": null,
      "amount": "88.35",
      "created-at": "2026-08-10T11:01:44.233Z"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/c58006f5-f79f-487b-88f6-7f3391750499/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/transactions/c58006f5-f79f-487b-88f6-7f3391750499/account"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/c58006f5-f79f-487b-88f6-7f3391750499/relationships/service",
          "related": "http://example.org/api/rest/customer/v1/transactions/c58006f5-f79f-487b-88f6-7f3391750499/service"
        }
      }
    }
  }
}