Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space DEWORK and version Dokumentation

...

width900px

Datenelemente

...

Table Filter

...

inverse

...

false

...

default

...

Description

...

isFirstTimeEnter

...

false

...

C

...

Das Vorhandensein hängt von der Händler-Konfiguration ab. Name des Karteninhabers, wie auf der Karte angegeben.

...

number

...

string

...

C

...

Das Vorhandensein hängt von der Händler-Konfiguration ab. Falls vorhanden, enthält dieses Element entweder die maskierte Kartennummer oder das Paygate-Kartentoken.

...

expiryDate

...

string

...

C

...

Vorhanden, falls number das Paygate-Kartentoken enthält

...

bin

...

object

...

M

...

Bankidentifizierungsnummer (BIN) einschließlich untere / obere Grenze, falls vorhanden

...

brand

...

string

...

M

...

Name des Kartennetzwerkes (z.B. 'Visa', 'MasterCard')

...

product

...

string

...

C

...

Kartenproduktname (falls verfügbar) (z.B. 'Business Premium Debit').

...

source

...

string

...

C

...

Kartenfinanzierungsquelle (falls verfügbar)

Zulässige Werte:

  • DEBIT

  • CREDIT

  • DEFERRED DEBIT

  • PREPAID

  • CHARGE

...

type

...

string

...

C

...

Der Kartentyp gibt das zur Karte gehörige Programm, Anwendung oder Karten-Level an, falls vorhanden (z.B. Classic, Standard, Gold, Business usw.)

...

country

...

JSON

...

M

...

Land, in dem die Karte ausgestellt ist

...

issuer

...

string

...

C

...

Kartenaussteller (falls verfügbar)

bin

...

accountBIN

...

string

...

M

...

Die ersten sechs Ziffern der Kartennummer, die auch als Bankidentifizierungsnummer bekannt sind (BIN). Die BIN umfasst zwischen 6 und 8 Ziffern - aus Gründen der PCI DSS Regeln dürfen maximal die ersten 6 Ziffern ausgegeben werden.

...

accountRangeLow

...

string

...

C

...

Die untere Grenze der Bankidentifizierungsnummer

...

accountRangeHigh

...

string

...

C

...

Die obere Grenze der Bankidentifizierungsnummer

hideColumnstrue
sparkNameSparkline
hidePanetrue
datepatterndd M yy
id1638292638560_493301375
worklog365|5|8|y w d h m|y w d h m
isORAND
separatorPoint (.)
order0

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNamedata_elements
PageWithExcerptEN:card:response

bin

Table Filter
inversefalse
defaultDescription
isFirstTimeEnterfalse
hideColumnstrue
sparkNameSparkline
hidePanetrue
datepatterndd M yy
id1638292638562_-1054501626
worklog365|5|8|y w d h m|y w d h m
isORAND
separatorPoint (.)
order0

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNamebin
PageWithExcerptEN:card:response

Schema

(info) BASEURL=

Multiexcerpt include
SpaceWithExcerptDE
MultiExcerptNameBaseURL
PageWithExcerptWording
schemas

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNameschema
PageWithExcerptEN:card:response

Beispiel

Multiexcerpt include
SpaceWithExcerptEN
MultiExcerptNamesample
PageWithExcerptEN:card:response

Table of Contents

Schema

Code Block
themeEclipse
linenumberstrue
{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "https://www.computop-paygate.com/schemas/card_response.json",
	"title": "card",
	"description": "Karteninformationen",
	"type": "object",
	"properties": {
		"cardholderName": {
			"type": "string",
			"maxLength" : 45,
            "minLength" : 2,
            "description" : "Name des Karteninhabers, wie auf der Karte angegeben. Alphanumerische Sonderzeichen gemäß EMV Book 4, “Appendix B”."
		},
		"number": {
			"type" : "string",
            "maxLength" : 19,
            "minLength" : 12
		},
		"expiryDate": {
			"type": "string",
			"description": "JJJJMM",
			"minLength": 6,
			"maxLength": 6
		},
		"bin": {
			"type": "object",
			"properties": {
				"accountBin": { "type": "string" },
				"accountRangeLow": { "type": "string" },
				"accountRangeHigh": { "type": "string" }
			},
			"additionalProperties": false,
			"required": ["accountBin"]
		},
		"brand": {
			"type": "string",
			"enum": [
				"MasterCard",
				"VISA",
				"AMEX",
				"Diners",
				"CBN",
				"JCB",
				"Dankort",
				"Maestro",
				"Cartes Bancaires",
				"Discover",
				"Bancontact",
				"Hipercard",
				"Elo",
				"Aura",
				"Carte 4Etoiles",
				"AirPlus",
				"CUP",
				"NARANJA",
				"SHOPPING",
				"CABAL",
				"ARGENCARD",
				"CENCOSUD",
				"KOOKMIN",
				"KEB",
				"BC",
				"SHINHAN",
				"SAMSUNG",
				"HYUNDAI",
				"LOTTE",
				"1euro",
				"echequevacances",
				"cofidis3xcb",
				"cofidis4xcb",
				"facilypay-3x",
				"facilypay-3xsansfrais",
				"facilypay-4x",
				"facilypay-4xsansfrais",
				"RuPay"
			]
		},
		"product": {
			"type": "string"
		},
		"source": {
			"type": "string",
			"enum": ["DEBIT", "CREDIT", "DEFERRED DEBIT", "PREPAID", "CHARGE"]
		},
		"type": {
			"type": "string"
		},
		"country": {
			"type": "object",
			"properties": {
				"countryName": {
					"type": "string",
					"description": "Name of the country."
				},
				"countryA2": {
					"type": "string",
					"description": "ISO-3166 alpha-2 code."
				},
				"countryA3": {
					"type": "string",
					"description": "ISO 3166-1:2013 alpha-3"
				},
				"countryNumber": {
					"type": "string",
					"description": "ISO-3166 numeric code."
				}
			},
			"required": ["countryA3"],
			"additionalProperties": false
		},
		"issuer": {
			"type": "string"
		}
	},
	"required": ["bin", "brand", "country"],
	"additionalProperties": false
}

Beispiel

Code Block
themeEclipse
linenumberstrue
{
	"cardholderName": "John Doe",
	"bin": {
		"accountBin": "492947",
		"accountRangeLow": "492947000000",
		"accountRangeHigh": "492948387999"
	},
	"brand": "VISA",
	"product": "Business",
	"source": "CREDIT",
	"type": "CLASSIC",
	"country": {
		"countryName": "United Kingdom of Great Britain and Northern Ireland",
		"countryA2": "GB",
		"countryA3": "GBR",
		"countryNumber": "826"
	},
	"issuer": "BARCLAYS BANK PLC"
}

...