Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space ENWORK and version Documentation
Info

The challengeRequestobject is only relevant to Server-to-Server implementations. It is part of the authenticationResponse object and only present if a challenge is deemed necessary.

Data Elements

Table Filter
defaultBeschreibung
isFirstTimeEnterfalse
hideColumnstrue
sparkNameSparkline
hidePanetrue
datepatterndd M yy
id1638288721237_-1977749136
worklog365|5|8|y w d h m|y w d h m
isORAND
separatorPoint (.)
order0
Multiexcerpt
MultiExcerptNamedata_elements
Table Transformer
dateFormatdd M yy
export-wordfalse
show-sourcefalse
export-csvfalse
id1638288721241_781996769
transposefalse
worklog365|5|8|y w d h m|y w d h m
separator.
export-pdffalse
sqlSELECT * FROM T*

KeyFormatCNDDescriptionBeschreibung
1

threeDSServerTransID

string

M

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNamePlatform-Name
PageWithExcerptWording
 PayID in canonical format as specified in IETF RFC 4122.

Multiexcerpt include
SpaceWithExcerptDE
MultiExcerptNamePlatform-Name
PageWithExcerptDE:Wording
 PayID im kanonischen Format gemäß IETF RFC 4122

2

acsTransID

string

M

Universally unique transaction identifier assigned by the ACS to identify a single transaction.

Vom ACS vergebene universelle eindeutige Transaktions-ID zur Identifikation einer Einzeltransaktion
3

messageType

string

M

Identifies the Message Type.

Values accepted:

  • CReq

Identifiziert den Nachrichten-Typ.

Zulässiger Wert:

  • CReq

4

messageVersion

string

M

Protocol version identifier

Kennung der Protokollversion
5

challengeWindowSize

string

M

Dimensions of the challenge window that will be displayed to the Cardholder. The ACS shall reply with content that is formatted to appropriately render in this window to provide the best possible user experience.

Preconfigured sizes are width x height in pixels of the window displayed in the Cardholder browser window.

Values accepted:

  • 01 = 250 x 400

  • 02 = 390 x 400

  • 03 = 500 x 600

  • 04 = 600 x 400

  • 05 = Full screen

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNamePlatform-Kurz
PageWithExcerptWording
 will determine the best window size according to the browserInfo for server-to-server requests.

Abmessungen des Challenge-Fensters, das dem Karteninhaber angezeigt wird. Der ACS soll mit so formatiertem Inhalt antworten, dass dieser richtig in diesem Fenster wiedergegeben werden kann, um ein bestmögliches Nutzererlebnis zu schaffen.

Vorkonfigurierte Größen gelten für Breite x Höhe in Pixeln für das im Browserfenster des Karteninhabers angezeigte Fenster.

Zulässige Werte:

  • 01 = 250 x 400

  • 02 = 390 x 400

  • 03 = 500 x 600

  • 04 = 600 x 400

  • 05 = Vollbild

Das

Multiexcerpt include
SpaceWithExcerptDE
MultiExcerptNamePlatform-Kurz
PageWithExcerptDE:Wording
bestimmt die beste Fenstergröße für Server-zu-Server-Anfragen gemäß browserInfo.

6

messageExtension

object

C

Data necessary to support requirements not otherwise defined in the 3-D Secure message are carried in a Message Extension.

In einer Nachrichten-Erweiterung werden nötige Daten zur Unterstützung der Anforderungen transportiert, die nicht anderweitig in der 3-D Secure Nachricht definiert sind.

Schema

(info) BASEURL=

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNameBaseURL
PageWithExcerptWording
schemas

Multiexcerpt
MultiExcerptNameschema
Code Block
languagejson
linenumberstrue
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "BASEURL/challengeRequest.json",
    "title": "Challenge Request",
    "description": "Challenge Request Data Elements",
    "type": "object",
    "properties": {
		"threeDSServerTransID": {
			"type": "string",
			"maxLength": 36
		},
		"acsTransID": {
			"type": "string",
			"maxLength": 36
		},
		"messageType": {
			"type": "string",
			"enum": ["CReq"]
		},
		"messageVersion": {
			"type": "string",
			"minLength": 5,
			"maxLength": 8
		},
		"challengeWindowSize": {
			"type": "string",
			"enum": ["01", "02", "03", "04", "05"]
		},
		"messageExtension": {
			"type": "array",
			"items": {
				"type": "object"
			}
		}
	}				
}

Sample

Multiexcerpt
MultiExcerptNamesample
Code Block
languagejson
linenumberstrue
{
    "threeDSServerTransID": "8a880dc0-d2d2-4067-bcb1-b08d1690b26e",
    "acsTransID": "d7c1ee99-9478-44a6-b1f2-391e29c6b340",
    "messageType": "CReq",
    "messageVersion": "2.1.0",
    "challengeWindowSize": "01",
    "messageExtension": [
		{
			"name": "emvcomsgextInChallenge",
			"id": "tc8Qtm465Ln1FX0nZprA",
			"criticalityIndicator": false,
			"data": "messageExtensionDataInChallenge"
		}
    ]
}

Table of Contents