Bunq · Schema

PaymentServiceProviderIssuerTransactionListing

Banking

Properties

Name Type Description
id integer The id of this transaction.
created string The time this transaction was created.
updated string The time this transaction was last updated.
public_uuid string The public uuid used to identify this transaction.
counterparty_alias object The counter party this transaction should be sent to.
amount object The money amount of this transaction
description string The description of this transaction, to be shown to the user and to the counter party.
url_redirect string The url to which the user should be redirected once the transaction is accepted or rejected.
time_expiry string The (optional) expiration time of the transaction. Defaults to 10 minutes.
status string The status of the transaction. Can only be used for cancelling the transaction.
alias object The monetary account this transaction is made from.
View JSON Schema on GitHub

JSON Schema

bunq-paymentserviceproviderissuertransactionlisting-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentServiceProviderIssuerTransactionListing",
  "title": "PaymentServiceProviderIssuerTransactionListing",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The id of this transaction.",
      "readOnly": true,
      "writeOnly": false
    },
    "created": {
      "type": "string",
      "description": "The time this transaction was created.",
      "readOnly": true,
      "writeOnly": false
    },
    "updated": {
      "type": "string",
      "description": "The time this transaction was last updated.",
      "readOnly": true,
      "writeOnly": false
    },
    "public_uuid": {
      "type": "string",
      "description": "The public uuid used to identify this transaction.",
      "readOnly": true,
      "writeOnly": false
    },
    "counterparty_alias": {
      "type": "object",
      "description": "The counter party this transaction should be sent to.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "amount": {
      "type": "object",
      "description": "The money amount of this transaction",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/Amount"
    },
    "description": {
      "type": "string",
      "description": "The description of this transaction, to be shown to the user and to the counter party.",
      "readOnly": true,
      "writeOnly": false
    },
    "url_redirect": {
      "type": "string",
      "description": "The url to which the user should be redirected once the transaction is accepted or rejected.",
      "readOnly": true,
      "writeOnly": false
    },
    "time_expiry": {
      "type": "string",
      "description": "The (optional) expiration time of the transaction. Defaults to 10 minutes.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the transaction. Can only be used for cancelling the transaction.",
      "readOnly": true,
      "writeOnly": false
    },
    "alias": {
      "type": "object",
      "description": "The monetary account this transaction is made from.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    }
  }
}