Bunq · Schema

Customer

Banking

Properties

Name Type Description
billing_account_id string The primary billing account account's id.
invoice_notification_preference string The preferred notification type for invoices.
id integer The id of the customer.
created string The timestamp of the customer object's creation.
updated string The timestamp of the customer object's last update.
View JSON Schema on GitHub

JSON Schema

bunq-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Customer",
  "title": "Customer",
  "type": "object",
  "properties": {
    "billing_account_id": {
      "type": "string",
      "description": "The primary billing account account's id.",
      "readOnly": false,
      "writeOnly": false
    },
    "invoice_notification_preference": {
      "type": "string",
      "description": "The preferred notification type for invoices.",
      "readOnly": false,
      "writeOnly": false
    },
    "id": {
      "type": "integer",
      "description": "The id of the customer.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the customer object's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the customer object's last update.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}