Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The ID of the card that needs to be replaced. |
| 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. |
| pin_code_assignment | array | Array of Types, PINs, account IDs assigned to the card. |
| second_line | string | The second line on the card. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CardBatchReplaceEntry",
"title": "CardBatchReplaceEntry",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The ID of the card that needs to be replaced.",
"readOnly": false,
"writeOnly": true
},
"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
},
"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
}
},
"required": [
"id"
]
}