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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo2NCwiZXhwIjoxNzgxMjc4ODY5fQ.MFKKmxDBAAsBPxHD6nmUCzkYdmEfX5X4ScIaMI7mUGY
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/transactions/9726a032-e38c-4465-bcbe-0fd216790bf2

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/"e27d910af0e99e032e40a6372c432069"
cache-control: max-age=0, private, must-revalidate
x-request-id: f0e91ec2-018e-47c1-8aa9-79fcdff9fce9
x-runtime: 0.006092
content-length: 800

Status

200 OK

Body

{
  "data": {
    "id": "9726a032-e38c-4465-bcbe-0fd216790bf2",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/transactions/9726a032-e38c-4465-bcbe-0fd216790bf2"
    },
    "attributes": {
      "description": null,
      "amount": "15.73",
      "created-at": "2026-06-12T15:40:09.870Z"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/9726a032-e38c-4465-bcbe-0fd216790bf2/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/transactions/9726a032-e38c-4465-bcbe-0fd216790bf2/account"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/9726a032-e38c-4465-bcbe-0fd216790bf2/relationships/service",
          "related": "http://example.org/api/rest/customer/v1/transactions/9726a032-e38c-4465-bcbe-0fd216790bf2/service"
        }
      }
    }
  }
}