Properties
| Name | Type | Description |
|---|---|---|
| amount | number | Payment amount |
| currency | string | Payment currency |
| debit_account | object | |
| credit_account | object | |
| remittance_information | string | Payment reference or memo |
| value_date | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WirePaymentRequest",
"title": "WirePaymentRequest",
"type": "object",
"required": [
"amount",
"currency",
"debit_account",
"credit_account"
],
"properties": {
"amount": {
"type": "number",
"description": "Payment amount"
},
"currency": {
"type": "string",
"enum": [
"CAD",
"USD"
],
"description": "Payment currency"
},
"debit_account": {
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"institution_number": {
"type": "string"
},
"transit_number": {
"type": "string"
}
}
},
"credit_account": {
"type": "object",
"properties": {
"account_number": {
"type": "string"
},
"bank_code": {
"type": "string"
},
"country": {
"type": "string"
},
"name": {
"type": "string"
}
}
},
"remittance_information": {
"type": "string",
"description": "Payment reference or memo"
},
"value_date": {
"type": "string",
"format": "date"
}
}
}