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.eyJzdWIiOjI1MiwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc3MjIxMjAxMX0.aCdPG5ikJXmloi2iYxkks_UueTXQwWX5-3yZnrT8LJs
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/"81dd61f2b7a7f16a92dcca21aa9c4c8b"
cache-control: max-age=0, private, must-revalidate
x-request-id: 7dcfe5c8-4e08-4301-98b0-8b5882984b27
x-runtime: 0.005776
content-length: 685

Status

200 OK

Body

{
  "data": {
    "id": "18",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/admin/transactions/18"
    },
    "attributes": {
      "description": null,
      "amount": "70.2",
      "created-at": "2026-02-27T16:56:51.668Z",
      "uuid": "04fdf70c-4d18-41e9-9048-a69dfbbdc7b3"
    },
    "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"
        }
      }
    }
  }
}