Bunq · Schema

RequestInquiryReference

Banking

Properties

Name Type Description
type string The type of request inquiry. Can be RequestInquiry or RequestInquiryBatch.
id integer The id of the request inquiry (batch).
View JSON Schema on GitHub

JSON Schema

bunq-requestinquiryreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestInquiryReference",
  "title": "RequestInquiryReference",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of request inquiry. Can be RequestInquiry or RequestInquiryBatch.",
      "readOnly": true,
      "writeOnly": false
    },
    "id": {
      "type": "integer",
      "description": "The id of the request inquiry (batch).",
      "readOnly": true,
      "writeOnly": false
    }
  }
}