Bunq · Schema

TransferwiseTransfer

Banking

Properties

Name Type Description
monetary_account_id string The id of the monetary account the payment should be made from.
recipient_id string The id of the target account.
alias object The LabelMonetaryAccount containing the public information of 'this' (party) side of the Payment.
counterparty_alias object The LabelMonetaryAccount containing the public information of the other (counterparty) side of the Payment.
status string The status.
sub_status string The subStatus.
status_transferwise string The status as Transferwise reports it.
status_transferwise_issue string A status to indicatie if Transferwise has an issue with this payment and requires more information.
amount_source object The source amount.
amount_target object The target amount.
rate string The rate of the payment.
reference string The reference of the payment.
pay_in_reference string The Pay-In reference of the payment.
time_delivery_estimate string The estimated delivery time.
quote object The quote details used to created the payment.
View JSON Schema on GitHub

JSON Schema

bunq-transferwisetransfer-schema.json Raw ↑
{
  "$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"
  ]
}