Bunq · Schema

ShareDetailPayment

Banking

Properties

Name Type Description
make_payments boolean If set to true, the invited user will be able to make payments from the shared account.
make_draft_payments boolean If set to true, the invited user will be able to make draft payments from the shared account.
view_balance boolean If set to true, the invited user will be able to view the account balance.
view_old_events boolean If set to true, the invited user will be able to view events from before the share was active.
view_new_events boolean If set to true, the invited user will be able to view events starting from the time the share became active.
View JSON Schema on GitHub

JSON Schema

bunq-sharedetailpayment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShareDetailPayment",
  "title": "ShareDetailPayment",
  "type": "object",
  "properties": {
    "make_payments": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to make payments from the shared account.",
      "readOnly": false,
      "writeOnly": false
    },
    "make_draft_payments": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to make draft payments from the shared account.",
      "readOnly": false,
      "writeOnly": false
    },
    "view_balance": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to view the account balance.",
      "readOnly": false,
      "writeOnly": false
    },
    "view_old_events": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to view events from before the share was active.",
      "readOnly": false,
      "writeOnly": false
    },
    "view_new_events": {
      "type": "boolean",
      "description": "If set to true, the invited user will be able to view events starting from the time the share became active.",
      "readOnly": false,
      "writeOnly": false
    }
  }
}