Bunq · Schema

TokenQrRequestIdealCreate

Banking

Properties

Name Type Description
id integer The id of the RequestResponse.
time_responded string The timestamp of when the RequestResponse was responded to.
time_expiry string The timestamp of when the RequestResponse expired or will expire.
monetary_account_id integer The id of the MonetaryAccount the RequestResponse was received on.
amount_inquired object The requested Amount.
amount_responded object The Amount the RequestResponse was accepted with.
alias object The LabelMonetaryAccount with the public information of the MonetaryAccount this RequestResponse was received on.
counterparty_alias object The LabelMonetaryAccount with the public information of the MonetaryAccount that is requesting money with this RequestResponse.
description string The description for the RequestResponse provided by the requesting party. Maximum 9000 characters.
attachment array The Attachments attached to the RequestResponse.
status string The status of the created RequestResponse. Can only be PENDING.
minimum_age integer The minimum age the user accepting the RequestResponse must have.
require_address string Whether or not an address must be provided on accept.
address_shipping object The shipping address provided by the accepting user if an address was requested.
address_billing object The billing address provided by the accepting user if an address was requested.
geolocation object The Geolocation where the RequestResponse was created.
redirect_url string The URL which the user is sent to after accepting or rejecting the Request.
type string The type of the RequestResponse. Can be only be IDEAL.
sub_type string The subtype of the RequestResponse. Can be only be NONE.
eligible_whitelist_id integer The whitelist id for this action or null.
View JSON Schema on GitHub

JSON Schema

bunq-tokenqrrequestidealcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenQrRequestIdealCreate",
  "title": "TokenQrRequestIdealCreate",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of the RequestResponse.",
      "readOnly": true,
      "writeOnly": false
    },
    "time_responded": {
      "type": "string",
      "description": "The timestamp of when the RequestResponse was responded to.",
      "readOnly": true,
      "writeOnly": false
    },
    "time_expiry": {
      "type": "string",
      "description": "The timestamp of when the RequestResponse expired or will expire.",
      "readOnly": true,
      "writeOnly": false
    },
    "monetary_account_id": {
      "type": "integer",
      "description": "The id of the MonetaryAccount the RequestResponse was received on.",
      "readOnly": true,
      "writeOnly": false
    },
    "amount_inquired": {
      "type": "object",
      "description": "The requested Amount.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_responded": {
      "type": "object",
      "description": "The Amount the RequestResponse was accepted with.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "alias": {
      "type": "object",
      "description": "The LabelMonetaryAccount with the public information of the MonetaryAccount this RequestResponse was received on.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "counterparty_alias": {
      "type": "object",
      "description": "The LabelMonetaryAccount with the public information of the MonetaryAccount that is requesting money with this RequestResponse.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "description": {
      "type": "string",
      "description": "The description for the RequestResponse provided by the requesting party. Maximum 9000 characters.",
      "readOnly": true,
      "writeOnly": false
    },
    "attachment": {
      "type": "array",
      "description": "The Attachments attached to the RequestResponse.",
      "readOnly": true,
      "writeOnly": false,
      "items": {
        "$ref": "#/components/schemas/Attachment"
      }
    },
    "status": {
      "type": "string",
      "description": "The status of the created RequestResponse. Can only be PENDING.",
      "readOnly": true,
      "writeOnly": false
    },
    "minimum_age": {
      "type": "integer",
      "description": "The minimum age the user accepting the RequestResponse must have.",
      "readOnly": true,
      "writeOnly": false
    },
    "require_address": {
      "type": "string",
      "description": "Whether or not an address must be provided on accept.",
      "readOnly": true,
      "writeOnly": false
    },
    "address_shipping": {
      "type": "object",
      "description": "The shipping address provided by the accepting user if an address was requested.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Address"
    },
    "address_billing": {
      "type": "object",
      "description": "The billing address provided by the accepting user if an address was requested.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Address"
    },
    "geolocation": {
      "type": "object",
      "description": "The Geolocation where the RequestResponse was created.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Geolocation"
    },
    "redirect_url": {
      "type": "string",
      "description": "The URL which the user is sent to after accepting or rejecting the Request.",
      "readOnly": true,
      "writeOnly": false
    },
    "type": {
      "type": "string",
      "description": "The type of the RequestResponse. Can be only be IDEAL.",
      "readOnly": true,
      "writeOnly": false
    },
    "sub_type": {
      "type": "string",
      "description": "The subtype of the RequestResponse. Can be only be NONE.",
      "readOnly": true,
      "writeOnly": false
    },
    "eligible_whitelist_id": {
      "type": "integer",
      "description": "The whitelist id for this action or null.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}