get specific entry
GET /api/rest/admin/transactions/:id
Request
Headers
Route
GET /api/rest/admin/transactions/18
Response
Headers
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"
}
}
}
}
}