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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo2MywiZXhwIjoxNzcyMjExNDc2fQ.u9f4Qpi2BJFcSV9zgyB6I0FLkJEcTGKrhN54xVX1lso
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/transactions/6f339e0c-e901-4084-999c-6913e42ac409

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/"7fb2c4ae52cb260a1729b21844549a20"
cache-control: max-age=0, private, must-revalidate
x-request-id: 2c3b271b-d3be-441d-9158-731c46fd9a3e
x-runtime: 0.006012
content-length: 800

Status

200 OK

Body

{
  "data": {
    "id": "6f339e0c-e901-4084-999c-6913e42ac409",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/transactions/6f339e0c-e901-4084-999c-6913e42ac409"
    },
    "attributes": {
      "description": null,
      "amount": "47.39",
      "created-at": "2026-02-27T16:56:56.330Z"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/6f339e0c-e901-4084-999c-6913e42ac409/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/transactions/6f339e0c-e901-4084-999c-6913e42ac409/account"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/6f339e0c-e901-4084-999c-6913e42ac409/relationships/service",
          "related": "http://example.org/api/rest/customer/v1/transactions/6f339e0c-e901-4084-999c-6913e42ac409/service"
        }
      }
    }
  }
}