Bunq · Schema

CardReplace

Banking

Properties

Name Type Description
name_on_card string The user's name as it will be on the card. Check 'card-name' for the available card names for a user.
preferred_name_on_card string The user's preferred name that can be put on the card.
pin_code_assignment array Array of Types, PINs, account IDs assigned to the card.
second_line string The second line on the card.
View JSON Schema on GitHub

JSON Schema

bunq-cardreplace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CardReplace",
  "title": "CardReplace",
  "type": "object",
  "properties": {
    "name_on_card": {
      "type": "string",
      "description": "The user's name as it will be on the card. Check 'card-name' for the available card names for a user.",
      "readOnly": false,
      "writeOnly": true
    },
    "preferred_name_on_card": {
      "type": "string",
      "description": "The user's preferred name that can be put on the card.",
      "readOnly": false,
      "writeOnly": true
    },
    "pin_code_assignment": {
      "type": "array",
      "description": "Array of Types, PINs, account IDs assigned to the card.",
      "readOnly": false,
      "writeOnly": true,
      "items": {
        "$ref": "#/components/schemas/CardPinAssignment"
      }
    },
    "second_line": {
      "type": "string",
      "description": "The second line on the card.",
      "readOnly": false,
      "writeOnly": true
    }
  }
}