get specific entry
GET /api/rest/customer/v1/payments/:id
Request
Headers
Route
GET /api/rest/customer/v1/payments/5f56b3ca-82ab-11f1-8bff-7a20efe65af3
Response
Headers
Status
200 OK
Body
{
"data": {
"id": "5f56b3ca-82ab-11f1-8bff-7a20efe65af3",
"type": "payments",
"links": {
"self": "http://example.org/api/rest/customer/v1/payments/5f56b3ca-82ab-11f1-8bff-7a20efe65af3"
},
"attributes": {
"amount": "10.0",
"currency": "USD",
"notes": "notes text",
"status": "completed",
"type-name": "manual",
"created-at": "2026-07-18T13:19:57.572Z",
"balance-before-payment": "0.0",
"rolledback-at": null
},
"relationships": {
"account": {
"links": {
"self": "http://example.org/api/rest/customer/v1/payments/5f56b3ca-82ab-11f1-8bff-7a20efe65af3/relationships/account",
"related": "http://example.org/api/rest/customer/v1/payments/5f56b3ca-82ab-11f1-8bff-7a20efe65af3/account"
}
}
}
}
}