Bunq · Schema

MonetaryAccountProfileFill

Banking

Properties

Name Type Description
status string The status of the profile.
balance_preferred object The goal balance.
balance_threshold_low object The low threshold balance.
issuer object The bank the fill is supposed to happen from, with BIC and bank name.
View JSON Schema on GitHub

JSON Schema

bunq-monetaryaccountprofilefill-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonetaryAccountProfileFill",
  "title": "MonetaryAccountProfileFill",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "The status of the profile.",
      "readOnly": false,
      "writeOnly": false
    },
    "balance_preferred": {
      "type": "object",
      "description": "The goal balance.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "balance_threshold_low": {
      "type": "object",
      "description": "The low threshold balance.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "issuer": {
      "type": "object",
      "description": "The bank the fill is supposed to happen from, with BIC and bank name.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Issuer"
    }
  }
}