This data element can be used to override configuration data on file for your Merchant ID.

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

loginID

string

M

3DS Login ID

3DS Login-ID
2

acquirerBIN

string

M

Acquirer’s Bank Identification Number

Banken-Identifikationsnummer (BIN) des Acquirers
3

merchantCategoryCode

string

M

Merchant Category Code (MCC)

Kategoriecode des Händlers (MCC)
4

merchantCountry

object

M

Merchant country

Händlerland
5

merchantName

string

M

Merchant name

Händlername
6merchantURLstring 

Fully qualified URL of the merchant site. A URL that is “fully qualified” is prefixed with the URL scheme, either “http://” or “https://”.

Required for EMV 3DS

Vollständig qualifizierte URL der Händlerseite. Eine “vollständig qualifizierte” URL hat das Präfix des URL-Schemas, entweder “http://” oder “https://”.

Für EMV 3DS erforderlich

Schema

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

{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "BASEURL/threeDSConfig.json",
	"title": "3DS Config",
	"description": "3DS Configuration Data",
	"type": "object",
	"properties": {
		"loginID": {
			"type": "string"
		},
		"acquirerBIN": {
			"type": "string",
			"minLength": 6,
			"maxLength": 11
		},
		"merchantCategoryCode": {
			"type": "string",
			"minLength": 4,
			"maxLength": 4
		},
		"merchantCountry": {
			"type": "object"
		},
		"merchantName": {
			"type": "string"
		},        
		"merchantURL": {            
			"type": "string",   
			"maxLength": 2048,   
			"description": "Fully qualified URL of the merchant site. A URL that is “fully qualified” is prefixed with the URL scheme, either “http://” or “https://”."
		}
	},
	"additionalProperties": false,
	"required": ["loginID", "acquirerBIN", "merchantCategoryCode", "merchantCountry", "merchantName"]
}

Sample

{
	"loginID": "123456ABCDEF",
	"acquirerBIN": "123456",
	"merchantCategoryCode": "5965",
	"merchantCountry": {
		"countryA3": "pol"
	},
	"merchantName": "ACME INC.",
	"merchantURL": "https://www.acme-example.com"
}