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.eyJhdWQiOlsiY3VzdG9tZXItdjEiXSwic3ViIjo2MywiZXhwIjoxNzc2MzY1MjA5fQ.ZbVVuMczFcYNi3HdmlC1Bt9_fgwbbQxnLdQIQFVB_3Y
Host: example.org
Cookie: 

Route

GET /api/rest/customer/v1/transactions/39b00325-658f-4044-85c7-e52fea8d5cfa

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/"8aa8dcdfd50be4ddf0c6768de31860b9"
cache-control: max-age=0, private, must-revalidate
x-request-id: 931f5585-a3d9-4c75-b762-e6c15a7445e9
x-runtime: 0.005926
content-length: 800

Status

200 OK

Body

{
  "data": {
    "id": "39b00325-658f-4044-85c7-e52fea8d5cfa",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/customer/v1/transactions/39b00325-658f-4044-85c7-e52fea8d5cfa"
    },
    "attributes": {
      "description": null,
      "amount": "24.36",
      "created-at": "2026-04-16T18:45:49.026Z"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/39b00325-658f-4044-85c7-e52fea8d5cfa/relationships/account",
          "related": "http://example.org/api/rest/customer/v1/transactions/39b00325-658f-4044-85c7-e52fea8d5cfa/account"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/customer/v1/transactions/39b00325-658f-4044-85c7-e52fea8d5cfa/relationships/service",
          "related": "http://example.org/api/rest/customer/v1/transactions/39b00325-658f-4044-85c7-e52fea8d5cfa/service"
        }
      }
    }
  }
}