get specific entry
GET /api/rest/admin/payments/:id
Request
Headers
Route
GET /api/rest/admin/payments/33
Response
Headers
Status
200 OK
Body
{
"data": {
"id": "33",
"type": "payments",
"links": {
"self": "http://example.org/api/rest/admin/payments/33"
},
"attributes": {
"created-at": "2026-01-02T12:46:09.595Z",
"amount": "10.0",
"notes": "notes text",
"private-notes": "private notes",
"status": "completed",
"type-name": "manual",
"balance-before-payment": "0.0",
"rolledback-at": null
},
"relationships": {
"account": {
"links": {
"self": "http://example.org/api/rest/admin/payments/33/relationships/account",
"related": "http://example.org/api/rest/admin/payments/33/account"
},
"data": {
"type": "accounts",
"id": "85"
}
}
}
}
}