Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the return. |
| reference | string | Your internal reference for the return. |
| status | string | The resulting status of the return. Possible values: **Authorised**, **Declined**. |
| transferId | string | The unique identifier of the original transfer. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReturnTransferResponse",
"title": "ReturnTransferResponse",
"properties": {
"id": {
"description": "The unique identifier of the return.",
"type": "string"
},
"reference": {
"description": "Your internal reference for the return.",
"type": "string"
},
"status": {
"description": "The resulting status of the return.\n\nPossible values: **Authorised**, **Declined**.",
"enum": [
"Authorised",
"Declined"
],
"type": "string"
},
"transferId": {
"description": "The unique identifier of the original transfer.",
"type": "string"
}
},
"type": "object"
}