get specific entry
GET /api/rest/customer/v1/payments/:id
Request
Headers
Route
GET /api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23
Response
Headers
Status
200 OK
Body
{
"data": {
"id": "6b951aa4-644d-11f1-907b-66d94f293d23",
"type": "payments",
"links": {
"self": "http://example.org/api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23"
},
"attributes": {
"amount": "10.0",
"notes": "notes text",
"status": "completed",
"type-name": "manual",
"created-at": "2026-06-09T21:51:50.538Z",
"balance-before-payment": "0.0",
"rolledback-at": null
},
"relationships": {
"account": {
"links": {
"self": "http://example.org/api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23/relationships/account",
"related": "http://example.org/api/rest/customer/v1/payments/6b951aa4-644d-11f1-907b-66d94f293d23/account"
}
}
}
}
}