Resolution center cases
Retrieve resolution center case
Retrieves the details of an existing resolution center case.
Required permissions:
- payment:resolution_center_case:read
get/resolution_center_cases/{id}
Path parameters
idstring required
Example:reso_xxxxxxxxxxxxx
The unique identifier of the resolution center case.
Response
A successful response
Example response
{
"company": {
"id": "biz_xxxxxxxxxxxxxx",
"title": "Pickaxe"
},
"created_at": "2023-12-01T05:00:00.401Z",
"due_date": "2023-12-01T05:00:00.401Z",
"id": "reso_xxxxxxxxxxxxx",
"payment": {
"created_at": "2023-12-01T05:00:00.401Z",
"id": "pay_xxxxxxxxxxxxxx",
"paid_at": "2023-12-01T05:00:00.401Z",
"subtotal": 6.9,
"total": 6.9
},
"resolution_events": [
{
"created_at": "2023-12-01T05:00:00.401Z",
"details": "I did not authorize this purchase.",
"id": "revt_xxxxxxxxxxxxx"
}
],
"updated_at": "2023-12-01T05:00:00.401Z",
"user": {
"id": "user_xxxxxxxxxxxxx",
"name": "John Doe",
"username": "johndoe42"
}
}