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

acsURL

ans..256

M

The ACS URL that will be used for the to PAReq

Die ACS-URL, die für PAReq verwendet wird
2

PAReq

ans..1024

M

A constructed, Base64 encoded and compressed field carrying the Payer Authentication Request Message Fields. The compression algorithm used is a combination of LZ77 and Huffman coding as specified in RFC 1951.

Ein konstruiertes, Base64-codiertes und komprimiertes Feld, dass die Nachrichtenfelder des Payer Authentication Request enthält. Der verwendete Kompressionsalgorithmus ist eine Kombination der LZ77- und Huffman-Codierung gemäß RFC 1951.
3

termURL

ans..256

M

The merchant URL the ACS will redirect the cardholder to after the authentication has concluded. Please note that Pay-Jet Cockpit adds the field PayID in the query string to the base URL.

Die Händler-URL, wohin der ACS den Karteninhaber nach Abschluss der Authentisierung weiterleitet. Beachten Sie bitte, dass das Pay-Jet Cockpit das Feld PayID in den Anfrage-String zur Basis-URL hinzufügt.

Schema

(info) BASEURL= https://www.payjet-cockpit.de/schemas

{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "BASEURL/threeDSLegacy.json",
	"title": "3DS Legacy Data",
	"description": "3DS legacy data needed to create the PAReq message",
	"type": "object",
	"properties": {
		"MID": {
			"type": "string",
			"minLength": 3,
			"maxLength": 30
		},
		"TransID": {
			"type": "string",
			"maxLength": 64
		},
		"acsURL": {
			"type": "string",
			"format": "uri"
		},
		"PAReq": {
			"type": "string",
			"description": "Base64 encoded and compressed (see RFC 1951) Payer Authentication Request (PAReq)." 
		},
		"TermURL": {
			"type": "string",
			"format": "uri"
		}
	},
	"required": ["MID", "TransID", "acsURL", "PAReq", "TermURL"],
	"additionalProperties": false
}

Sample

{
	"MID": "ACME_INC",
	"TransID": "Transaction ID 123",
	"acsURL": "https://ps4acs.netcetera-payment.ch/paymentAuthentication?token=oT2C6ISWSA-fzrmyQpAy1w==",
	"PAReq": "eJxVUm2P2jAM/itVv5e0TdMW5ObEQLtjEugYPaHxLaTuUYm0vb4Mul+/BMpul09+bMeP/djwdFVn6zc2bVGVie1NXNvCUlZZUb4n9lv63Yltq+1EmYlzVWJiD9jaTxzSU4O43KHsG+SwxrYV72gVWWLXgk2px6QfOB7LmRMIypwjzWMnkqHIs/zoo6Q2h9f5T/zgMHJzTT3xgTygrtnIkyg7DkJ+fFtteBBTN9IZIwSFzWrJPcbYIg0YC6nvejQAcvdDKRTyRaXqvqtq61kdX4DcfCCrvuyagftRCOQBoG/O/NR19YyQy+UykePPSYZATAzIZ0evvbFaXetaZHyz3KiD2vqH57dhvV+xzXLLfqkf58N+nQAxGZCJDrnub+rGvme54YxGMzYFcvODUKYJTl399Hx3BLUhmX8J/e8CLX2jVzXwaRTrOR4I8FrrTekMrdU/GzJsJU+x7Wb3UjcM5HOSxYtRWnZauyr1F+Fqt9/NnfxPo4ZtPR+8S5IY7W8JhqMwCrrencQAIKYEGddKxpvQ1pdb+QuhC8wa",
	"TermURL": "http://www.acme.com/fallback/term?PayID=43ffd6de21b9449bbeec17c09b44ad17"
}