Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The id of the Token. |
| token | string | The Session token is the token the client has to provide in the "X-Bunq-Client-Authentication" header for each API call that requires a Session (only the creation of a Installation and DeviceServer do |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SessionServerToken",
"title": "SessionServerToken",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The id of the Token.",
"readOnly": true,
"writeOnly": false
},
"token": {
"type": "string",
"description": "The Session token is the token the client has to provide in the \"X-Bunq-Client-Authentication\" header for each API call that requires a Session (only the creation of a Installation and DeviceServer don't require a Session).",
"readOnly": true,
"writeOnly": false
}
}
}