get specific entry
GET /api/rest/customer/v1/payments/:id
Request
Headers
Route
GET /api/rest/customer/v1/payments/ac09096c-a26e-11ef-a008-0242ac120003
Response
Headers
Status
200 OK
Body
{
"data": {
"id": "ac09096c-a26e-11ef-a008-0242ac120003",
"type": "payments",
"links": {
"self": "http://example.org/api/rest/customer/v1/payments/ac09096c-a26e-11ef-a008-0242ac120003"
},
"attributes": {
"amount": "10.0",
"notes": "notes text",
"status": "completed",
"type-name": "manual",
"created-at": "2024-11-14T09:56:08.814Z"
},
"relationships": {
"account": {
"links": {
"self": "http://example.org/api/rest/customer/v1/payments/ac09096c-a26e-11ef-a008-0242ac120003/relationships/account",
"related": "http://example.org/api/rest/customer/v1/payments/ac09096c-a26e-11ef-a008-0242ac120003/account"
}
}
}
}
}