Bunq · Schema

InstallationToken

Banking

Properties

Name Type Description
id integer The id of the Token.
created string The timestamp of the Token's creation.
updated string The timestamp of the Token's last update.
token string The installation token is the token the client has to provide in the "X-Bunq-Client-Authentication" header for the creation of a DeviceServer and SessionServer.
View JSON Schema on GitHub

JSON Schema

bunq-installationtoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InstallationToken",
  "title": "InstallationToken",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the Token.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The timestamp of the Token's creation.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The timestamp of the Token's last update.",
      "readOnly": true,
      "writeOnly": false
    },
    "token": {
      "type": "string",
      "description": "The installation token is the token the client has to provide in the \"X-Bunq-Client-Authentication\" header for the creation of a DeviceServer and SessionServer.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}