Bunq · Schema

TransferwiseAccountQuote

Banking

Properties

Name Type Description
country string The country of the receiving account.
name_account_holder string The name of the account holder.
type string The chosen recipient account type. The possible options are provided dynamically in the response endpoint.
detail array The fields which were specified as "required" and have since been filled by the user. Always provide the full list.
View JSON Schema on GitHub

JSON Schema

bunq-transferwiseaccountquote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferwiseAccountQuote",
  "title": "TransferwiseAccountQuote",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "The country of the receiving account.",
      "readOnly": false,
      "writeOnly": false
    },
    "name_account_holder": {
      "type": "string",
      "description": "The name of the account holder.",
      "readOnly": false,
      "writeOnly": false
    },
    "type": {
      "type": "string",
      "description": "The chosen recipient account type. The possible options are provided dynamically in the response endpoint.",
      "readOnly": false,
      "writeOnly": true
    },
    "detail": {
      "type": "array",
      "description": "The fields which were specified as \"required\" and have since been filled by the user. Always provide the full list.",
      "readOnly": false,
      "writeOnly": true,
      "items": {
        "$ref": "#/components/schemas/TransferwiseRequirementField"
      }
    }
  },
  "required": [
    "name_account_holder",
    "type"
  ]
}