Bunq · Schema

IdealMerchantTransactionRead

Banking

Properties

Name Type Description
monetary_account_id integer The id of the monetary account this ideal merchant transaction links to.
alias object The alias of the monetary account to add money to.
counterparty_alias object The alias of the monetary account the money comes from.
amount_guaranteed object In case of a successful transaction, the amount of money that will be transferred.
amount_requested object The requested amount of money to add.
expiration string When the transaction will expire.
issuer string The BIC of the issuer.
issuer_name string The Name of the issuer.
issuer_authentication_url string The URL to visit to
purchase_identifier string The 'purchase ID' of the iDEAL transaction.
status string The status of the transaction.
status_timestamp string When the status was last updated.
transaction_identifier string The 'transaction ID' of the iDEAL transaction.
View JSON Schema on GitHub

JSON Schema

bunq-idealmerchanttransactionread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdealMerchantTransactionRead",
  "title": "IdealMerchantTransactionRead",
  "type": "object",
  "properties": {
    "monetary_account_id": {
      "type": "integer",
      "description": "The id of the monetary account this ideal merchant transaction links to.",
      "readOnly": true,
      "writeOnly": false
    },
    "alias": {
      "type": "object",
      "description": "The alias of the monetary account to add money to.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "counterparty_alias": {
      "type": "object",
      "description": "The alias of the monetary account the money comes from.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "amount_guaranteed": {
      "type": "object",
      "description": "In case of a successful transaction, the amount of money that will be transferred.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "amount_requested": {
      "type": "object",
      "description": "The requested amount of money to add.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "expiration": {
      "type": "string",
      "description": "When the transaction will expire.",
      "readOnly": true,
      "writeOnly": false
    },
    "issuer": {
      "type": "string",
      "description": "The BIC of the issuer.",
      "readOnly": true,
      "writeOnly": false
    },
    "issuer_name": {
      "type": "string",
      "description": "The Name of the issuer.",
      "readOnly": true,
      "writeOnly": false
    },
    "issuer_authentication_url": {
      "type": "string",
      "description": "The URL to visit to ",
      "readOnly": true,
      "writeOnly": false
    },
    "purchase_identifier": {
      "type": "string",
      "description": "The 'purchase ID' of the iDEAL transaction.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the transaction.",
      "readOnly": true,
      "writeOnly": false
    },
    "status_timestamp": {
      "type": "string",
      "description": "When the status was last updated.",
      "readOnly": true,
      "writeOnly": false
    },
    "transaction_identifier": {
      "type": "string",
      "description": "The 'transaction ID' of the iDEAL transaction.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}