Properties
| Name | Type | Description |
|---|---|---|
| payment_id | string | |
| uetr | string | Unique End-to-End Transaction Reference (SWIFT GPI) |
| status | string | |
| created_at | string | |
| amount | number | |
| currency | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WirePaymentResponse",
"title": "WirePaymentResponse",
"type": "object",
"properties": {
"payment_id": {
"type": "string"
},
"uetr": {
"type": "string",
"description": "Unique End-to-End Transaction Reference (SWIFT GPI)"
},
"status": {
"type": "string",
"enum": [
"PENDING",
"PROCESSING",
"COMPLETED",
"FAILED"
]
},
"created_at": {
"type": "string",
"format": "date-time"
},
"amount": {
"type": "number"
},
"currency": {
"type": "string"
}
}
}