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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo2MywiZXhwIjoxNzY3MzU4MDM3fQ.M5c-k-D0a3dj3F8fB9Y21Sq85D247EcPHN5clGJ4p9g
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/transactions/52102c21-a16e-415d-8525-90102940b2e4

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/"58419af9464bad042d503978434458ab"
cache-control: max-age=0, private, must-revalidate
x-request-id: 11f193ff-2306-4517-8af4-b76d9edb32e2
x-runtime: 0.006397
content-length: 800

Status

200 OK

Body

{
  "data": {
    "id": "52102c21-a16e-415d-8525-90102940b2e4",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/transactions/52102c21-a16e-415d-8525-90102940b2e4"
    },
    "attributes": {
      "description": null,
      "amount": "92.44",
      "created-at": "2026-01-02T12:46:17.734Z"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/52102c21-a16e-415d-8525-90102940b2e4/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/transactions/52102c21-a16e-415d-8525-90102940b2e4/account"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/52102c21-a16e-415d-8525-90102940b2e4/relationships/service",
          "related": "http://example.org/api/rest/customer/v1/transactions/52102c21-a16e-415d-8525-90102940b2e4/service"
        }
      }
    }
  }
}