Get refund by ID
API Refs
- Staging: Get refund by ID
This endpoint returns detailed information for a specific refund.
URI Parameters
Name | Type | Description | Required |
---|---|---|---|
refundId | number | The ID of the refund to retrieve | yes |
Response body
The response is a single refund object with the same structure as in the Get list of refunds
endpoint.
Example
{
"id": 987,
"policyholderId": 123,
"amount": 100.00,
"memo": "Refund for policy cancellation",
"status": { "code": 1, "value": "payment_link_pending" },
"createdAt": "2024-07-22T15:00:00Z",
"policyholder": { "id": 123, "firstName": "John", "lastName": "Doe", "email": "[email protected]" }
}
Updated 1 day ago