Bunq · Schema

MasterCardIdentityCheckChallengeRequestUserRead

Banking

Properties

Name Type Description
amount string The transaction amount.
expiry_time string When the identity check expires.
description string The description of the purchase. NULL if no description is given.
status string The status of the secure code. Can be PENDING, ACCEPTED, REJECTED, EXPIRED.
decision_description string Textual explanation of the decision.
decision_description_translated string Textual explanation of the decision in user's language.
url_merchant_app string The return url for the merchant app after the challenge is accepted or rejected.
counterparty_alias object The monetary account label of the counterparty.
event_id integer The ID of the latest event for the identity check.
View JSON Schema on GitHub

JSON Schema

bunq-mastercardidentitycheckchallengerequestuserread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MasterCardIdentityCheckChallengeRequestUserRead",
  "title": "MasterCardIdentityCheckChallengeRequestUserRead",
  "type": "object",
  "properties": {
    "amount": {
      "type": "string",
      "description": "The transaction amount.",
      "readOnly": true,
      "writeOnly": false
    },
    "expiry_time": {
      "type": "string",
      "description": "When the identity check expires.",
      "readOnly": true,
      "writeOnly": false
    },
    "description": {
      "type": "string",
      "description": "The description of the purchase. NULL if no description is given.",
      "readOnly": true,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the secure code. Can be PENDING, ACCEPTED, REJECTED, EXPIRED.",
      "readOnly": true,
      "writeOnly": false
    },
    "decision_description": {
      "type": "string",
      "description": "Textual explanation of the decision.",
      "readOnly": true,
      "writeOnly": false
    },
    "decision_description_translated": {
      "type": "string",
      "description": "Textual explanation of the decision in user's language.",
      "readOnly": true,
      "writeOnly": false
    },
    "url_merchant_app": {
      "type": "string",
      "description": "The return url for the merchant app after the challenge is accepted or rejected.",
      "readOnly": true,
      "writeOnly": false
    },
    "counterparty_alias": {
      "type": "object",
      "description": "The monetary account label of the counterparty.",
      "readOnly": true,
      "writeOnly": false,
      "$ref": "#/components/schemas/LabelMonetaryAccount"
    },
    "event_id": {
      "type": "integer",
      "description": "The ID of the latest event for the identity check.",
      "readOnly": true,
      "writeOnly": false
    }
  }
}