Transactions API

get specific entry

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

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI0MSwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzA0M30.sPX-6g-ZFr39ZPCK5Atk7tlZ8ikyBqQwH-9q4VHEDtI
Host: example.org
Cookie: 

Route

GET /api/rest/admin/transactions/14

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/"6fd65cfdcf2555ada7303f3a19ca1469"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: b7d54266-17be-4ad6-bfeb-33debacd5ac9
X-Runtime: 0.007848
Content-Length: 685

Status

200 OK

Body

{
  "data": {
    "id": "14",
    "type": "transactions",
    "links": {
      "self": "http://example.org/api/rest/admin/transactions/14"
    },
    "attributes": {
      "description": null,
      "amount": "35.3",
      "created-at": "2025-03-01T18:07:23.103Z",
      "uuid": "2394629f-7986-49ce-a702-c0f9da4c8ba4"
    },
    "relationships": {
      "account": {
        "links": {
          "self": "http://example.org/api/rest/admin/transactions/14/relationships/account",
          "related": "http://example.org/api/rest/admin/transactions/14/account"
        },
        "data": {
          "type": "accounts",
          "id": "85"
        }
      },
      "service": {
        "links": {
          "self": "http://example.org/api/rest/admin/transactions/14/relationships/service",
          "related": "http://example.org/api/rest/admin/transactions/14/service"
        },
        "data": {
          "type": "services",
          "id": "11"
        }
      }
    }
  }
}