Bunq · Schema

RequestInquiryBatch

Banking

Properties

Name Type Description
request_inquiries array The list of requests that were made.
status string The status of the request.
total_amount_inquired object The total amount originally inquired for this batch.
event_id integer The ID of the associated event if the request batch was made using 'split the bill'.
reference_split_the_bill object The reference to the object used for split the bill. Can be Payment, PaymentBatch, ScheduleInstance, RequestResponse and MasterCardAction
View JSON Schema on GitHub

JSON Schema

bunq-requestinquirybatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RequestInquiryBatch",
  "title": "RequestInquiryBatch",
  "type": "object",
  "properties": {
    "request_inquiries": {
      "type": "array",
      "description": "The list of requests that were made.",
      "readOnly": false,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/RequestInquiry"
      }
    },
    "status": {
      "type": "string",
      "description": "The status of the request.",
      "readOnly": false,
      "writeOnly": true
    },
    "total_amount_inquired": {
      "type": "object",
      "description": "The total amount originally inquired for this batch.",
      "readOnly": false,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "event_id": {
      "type": "integer",
      "description": "The ID of the associated event if the request batch was made using 'split the bill'.",
      "readOnly": false,
      "writeOnly": true
    },
    "reference_split_the_bill": {
      "type": "object",
      "description": "The reference to the object used for split the bill. Can be Payment, PaymentBatch, ScheduleInstance, RequestResponse and MasterCardAction",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/RequestReferenceSplitTheBillAnchorObject"
    }
  }
}