Properties
| Name | Type | Description |
|---|---|---|
| type | string | PIN type. Can be PRIMARY, SECONDARY or TERTIARY |
| routing_type | string | Routing type. Can be MANUAL or AUTOMATIC |
| pin_code | string | The 4 digit PIN to be assigned to this account. |
| monetary_account_id | integer | The ID of the monetary account to assign to this pin for the card. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CardPinAssignment",
"title": "CardPinAssignment",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "PIN type. Can be PRIMARY, SECONDARY or TERTIARY",
"readOnly": false,
"writeOnly": false
},
"routing_type": {
"type": "string",
"description": "Routing type. Can be MANUAL or AUTOMATIC",
"readOnly": false,
"writeOnly": true
},
"pin_code": {
"type": "string",
"description": "The 4 digit PIN to be assigned to this account.",
"readOnly": false,
"writeOnly": true
},
"monetary_account_id": {
"type": "integer",
"description": "The ID of the monetary account to assign to this pin for the card.",
"readOnly": false,
"writeOnly": false
}
}
}