Data Elements

Oops, it seems that you need to place a table or a macro generating a table within the Table Filter macro.

The table is being loaded. Please wait for a bit ...


KeyFormatCNDDescriptionBeschreibung
1

acsInterface

string

M

This the ACS interface that the challenge will present to the cardholder.

Values accepted:

  • native

  • html

Die ACS-Schnittstelle, die dem Karteninhaber die Challenge zeigen soll

Zulässige Werte:

  • native

  • html

2

acsUiTemplate

string

M

Identifies the UI Template format that the ACS first presents to the consumer.

Values accepted:

  • text

  • singleSelect

  • multiSelect

  • oob

  • htmlOther

htmlOther is only valid in combination with html UI (see acsInterface).

Bezeichnet das Format der UI-Vorlage, welche das ACS dem Kunden zuerst zeigt.

Zulässige Werte:

  • text

  • singleSelect

  • multiSelect

  • oob

  • htmlOther

htmlOther is nur in Kombination mit html UI gültig (siehe acsInterface).

Schema

(info) BASEURL= https://www.computop-paygate.com/schemas

{
	"$id": "BASEURL/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"
	}
}

asd