Bunq · Schema

ConfirmationOfFunds

Banking

Properties

Name Type Description
pointer_iban object The pointer (IBAN) of the account we're querying.
amount object The amount we want to check for.
View JSON Schema on GitHub

JSON Schema

bunq-confirmationoffunds-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfirmationOfFunds",
  "title": "ConfirmationOfFunds",
  "type": "object",
  "properties": {
    "pointer_iban": {
      "type": "object",
      "description": "The pointer (IBAN) of the account we're querying.",
      "readOnly": false,
      "writeOnly": true,
      "$ref": "#/components/schemas/Pointer"
    },
    "amount": {
      "type": "object",
      "description": "The amount we want to check for.",
      "readOnly": false,
      "writeOnly": true,
      "$ref": "#/components/schemas/Amount"
    }
  },
  "required": [
    "pointer_iban",
    "amount"
  ]
}