Transactions API

get specific entry

GET /api/rest/admin/transactions/:id

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI1NywiYXVkIjpbImFkbWluIl0sImV4cCI6MTc3NjM2NTc0NH0.UgnIj5xvVWYS40d27ue5XEGvouEtltPlMAsXD8JZ-fc
Host: example.org
Cookie: 

Route

GET /api/rest/admin/transactions/18

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/"f1dc7498dae3685d9aa591c2eefc0763"
cache-control: max-age=0, private, must-revalidate
x-request-id: a444e221-0a82-47bf-ad7f-4710614c0900
x-runtime: 0.005658
content-length: 686

Status

200 OK

Body

{
  "data": {
    "id": "18",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/admin/transactions/18"
    },
    "attributes": {
      "description": null,
      "amount": "81.81",
      "created-at": "2026-04-16T18:45:44.498Z",
      "uuid": "d05b4cc2-2cf0-413b-a1a3-01895de58a0b"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/transactions/18/relationships/account",
          "related": "http://example.org/api/rest/admin/transactions/18/account"
        },
        "data": {
          "type": "accounts",
          "id": "96"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/admin/transactions/18/relationships/service",
          "related": "http://example.org/api/rest/admin/transactions/18/service"
        },
        "data": {
          "type": "services",
          "id": "14"
        }
      }
    }
  }
}