Bunq · Schema

TransferwiseTransferRequirement

Banking

Properties

Name Type Description
recipient_id string The id of the target account.
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-transferwisetransferrequirement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferwiseTransferRequirement",
  "title": "TransferwiseTransferRequirement",
  "type": "object",
  "properties": {
    "recipient_id": {
      "type": "string",
      "description": "The id of the target account.",
      "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": [
    "recipient_id"
  ]
}