{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferwiseTransfer",
"title": "TransferwiseTransfer",
"type": "object",
"properties": {
"monetary_account_id": {
"type": "string",
"description": "The id of the monetary account the payment should be made from.",
"readOnly": false,
"writeOnly": true
},
"recipient_id": {
"type": "string",
"description": "The id of the target account.",
"readOnly": false,
"writeOnly": true
},
"alias": {
"type": "object",
"description": "The LabelMonetaryAccount containing the public information of 'this' (party) side of the Payment.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelMonetaryAccount"
},
"counterparty_alias": {
"type": "object",
"description": "The LabelMonetaryAccount containing the public information of the other (counterparty) side of the Payment.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelMonetaryAccount"
},
"status": {
"type": "string",
"description": "The status.",
"readOnly": true,
"writeOnly": false
},
"sub_status": {
"type": "string",
"description": "The subStatus.",
"readOnly": true,
"writeOnly": false
},
"status_transferwise": {
"type": "string",
"description": "The status as Transferwise reports it.",
"readOnly": true,
"writeOnly": false
},
"status_transferwise_issue": {
"type": "string",
"description": "A status to indicatie if Transferwise has an issue with this payment and requires more information.",
"readOnly": true,
"writeOnly": false
},
"amount_source": {
"type": "object",
"description": "The source amount.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"amount_target": {
"type": "object",
"description": "The target amount.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"rate": {
"type": "string",
"description": "The rate of the payment.",
"readOnly": true,
"writeOnly": false
},
"reference": {
"type": "string",
"description": "The reference of the payment.",
"readOnly": true,
"writeOnly": false
},
"pay_in_reference": {
"type": "string",
"description": "The Pay-In reference of the payment.",
"readOnly": true,
"writeOnly": false
},
"time_delivery_estimate": {
"type": "string",
"description": "The estimated delivery time.",
"readOnly": true,
"writeOnly": false
},
"quote": {
"type": "object",
"description": "The quote details used to created the payment.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/TransferwiseQuote"
}
},
"required": [
"monetary_account_id",
"recipient_id"
]
}