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.eyJzdWIiOjI1OCwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc4MTI3OTQwNX0.0G0sexTb5wWYQRQIYvqYGviGVVwKS120iNIDeEJEvHc
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/"3e32c01b74aea3090db1ac9fda0301b0"
cache-control: max-age=0, private, must-revalidate
x-request-id: f639969c-808d-4ec4-aa0f-a62f3b72bd5e
x-runtime: 0.005015
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": "58.57",
      "created-at": "2026-06-12T15:40:05.490Z",
      "uuid": "fb2f4f67-5c3e-4462-8b47-ce9bc73b1400"
    },
    "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"
        }
      }
    }
  }
}