Bunq · Schema

OauthClientListing

Banking

Properties

Name Type Description
id integer Id of the client.
status string The status of the pack group, can be ACTIVE, CANCELLED or CANCELLED_PENDING.
display_name string The display name of this Oauth Client
client_id string The Client ID associated with this Oauth Client
secret string Secret associated with this Oauth Client
callback_url array The callback URLs which are bound to this Oauth Client
View JSON Schema on GitHub

JSON Schema

bunq-oauthclientlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OauthClientListing",
  "title": "OauthClientListing",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Id of the client.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the pack group, can be ACTIVE, CANCELLED or CANCELLED_PENDING.",
      "readOnly": true,
      "writeOnly": false
    },
    "display_name": {
      "type": "string",
      "description": "The display name of this Oauth Client",
      "readOnly": true,
      "writeOnly": false
    },
    "client_id": {
      "type": "string",
      "description": "The Client ID associated with this Oauth Client",
      "readOnly": true,
      "writeOnly": false
    },
    "secret": {
      "type": "string",
      "description": "Secret associated with this Oauth Client",
      "readOnly": true,
      "writeOnly": false
    },
    "callback_url": {
      "type": "array",
      "description": "The callback URLs which are bound to this Oauth Client",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/OauthCallbackUrl"
      }
    }
  }
}