Get refund by ID

📘

API Refs

This endpoint returns detailed information for a specific refund.

URI Parameters

NameTypeDescriptionRequired
refundIdnumberThe ID of the refund to retrieveyes

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]" }
}