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": {
"amount": "10.0",
"notes": "notes text",
"status": "completed",
"type-name": "manual"
},
"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": "82"
}
}
}
}
}