Data Elements
Key | Format | Condition | Description | |
---|---|---|---|---|
1 | acsInterface | string | M | This the ACS interface that the challenge will present to the cardholder. Values accepted:
|
2 | acsUiTemplate | string | M | Identifies the UI Template format that the ACS first presents to the consumer. Values accepted:
htmlOther is only valid in combination with html UI (see acsInterface). |
Schema
{ "$id": "https://paymentpage.axepta.bnpparibas/schemas/acsRenderingType.json", "title": "accountInfo", "description": "ACS Rendering Type", "type": "object", "properties": { "acsRenderingType": { "type": "object", "properties": { "acsInterface": { "type": "string", "enum": [ "native", "html" ] }, "acsUiTemplate": { "type": "string", "enum": [ "text", "singleSelect", "multiSelect", "oob", "other" ] } }, "required": [ "acsInterface", "acsUiTemplate" ], "additionalProperties": false } }, "additionalProperties": false }
Sample
{ "acsRenderingType": { "acsInterface": "native", "acsUiTemplate": "singleSelect" } }