• DeutschEnglish

accountInfo

Die Kontoinformationen enthalten optionale Informationen über das Konto des Karteninhabers beim Händler.

Die Datenelemente in den Kontoinformationen des Karteninhabers zur Festlegung eines Zeitraums können entweder als spezifisches Datum oder als ein Näherungsindikator angegeben werden, wann die Aktion erfolgte. 3DS Anforderer können beide Formate nutzen.

Datenelemente

Key

Format

CND

Beschreibung

accountIdentifier

string

O

Die Konto-ID des Karteninhabers in der Händler-Umgebung / Webseite (z.B. Kundennummer)

authenticationInformation

object

O

Dieses Element enthält optionale Informationen darüber, wie sich der Karteninhaber bei der Anmeldung zur Händler-Umgebung (z.B. Webseite) authentisiert hat.

accountAgeIndicator

string

O

Zeitdauer, wie lange der Kunde das Zahlungsmittel / Zahlungskonto beim Händler hat.

Zulässige Werte:

  • guestCheckout

  • thisTransaction

  • lessThan30Days

  • from30To60Days

  • moreThan60Days

accountChangeDate

string

O

Datum der letzten Änderung des Zahlungsmittels (Kontos) des Kunden beim Händler einschließlich Rechnungs- oder Lieferadresse, neues Zahlungskonto oder neu hinzugefügte(r) Benutzer (JJJJ-MM-TT).

accountChangeIndicator

string

O

Zeitdauer seit der letzten Änderung der Kontoinformationen des Kunden beim Händler einschließlich Rechnungs- oder Lieferadresse, neues Zahlungskonto oder neu hinzugefügte(r) Benutzer.

Zulässige Werte:

  • thisTransaction

  • lessThan30Days

  • from30To60Days

  • moreThan60Days

accountCreationDate

string

O

Datum, an dem der Kunde das Konto beim Händler eröffnet hat im Format JJJJ-MM-TT

passwordChangeDate

string

O

Datum der letzten Kennwortänderung oder des Rücksetzens des Kundenkontos beim Händler im Format JJJJ-MM-TT

passwordChangeDateIndicator

string

O

Gibt die Zeitdauer seit der Kennwortänderung oder seit dem Rücksetzen des Kundenkontos an.

Zulässige Werte:

  • noChange

  • thisTransaction

  • lessThan30Days

  • from30To60Days

  • moreThan60Days

nbrOfPurchases

integer

O

Anzahl der Käufe in den letzten 6 Monaten

addCardAttemptsDay

integer

O

Anzahl der Versuche zum Hinzufügen einer Karte in den letzten 24 Stunden

nbrTransactionsDay

integer

O

Anzahl der Transaktionen (erfolgreich und abgebrochen) in den letzten 24 Stunden

nbrTransactionsYear

integer

O

Anzahl der Transaktionen (erfolgreich und abgebrochen) im letzten Jahr

paymentAccountAge

string

O

Datum, an dem das Zahlungskonto im Kundenkonto registriert worden ist, im Format JJJJ-MM-TT

paymentAccountAgeIndicator

string

O

Gibt die Zeitdauer an, wie lange das Zahlungskonto im Kundenkonto registriert ist.

Zulässige Werte:

  • guestCheckout

  • thisTransaction

  • lessThan30Days

  • from30To60Days

  • moreThan60Days

shipAddressUsageDate

string

O

Datum, wann die für diese Transaktion angegebene Lieferadresse erstmalig verwendet wurde, im Format JJJJ-MM-TT

shipAddressUsageIndicator

string

O

Gibt an, wann die für diese Transaktion angegebene Lieferadresse erstmalig verwendet wurde.

Zulässige Werte:

  • thisTransaction

  • lessThan30Days

  • from30To60Days

  • moreThan60Days

suspiciousAccActivity

boolean

O

Gibt an, ob der Händler in dem Kundenkonto verdächtige Aktivitäten (einschließlich früheren Betrugs) festgestellt hat

authenticationInformation

Key

Format

CND

Beschreibung

authenticationData

string

C

Dieses Datenelement kann spezielle Beglaubigungsdaten der Authentisierung wie FIDO enthalten, falls zutreffend

authenticationMethod

string

M

Dieses Datenelement gibt den vom Karteninhaber zur Authentisierung beim Händler verwendeten Mechanismus an.

Zulässige Werte:

  • guest

  • merchantCredentials

  • federatedID

  • issuerCredentials

  • thirdPartyAuthentication

  • FIDO

  • signedFIDO

  • SRCassuranceData

authenticationTimestamp

string

M

Datum und Uhrzeit (siehe RFC 3339) der Authentisierung des Karteninhabers inUTC.

JJJJ-MM-TTTHH:MM:SS+00:00

Schema

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

1
{
2
"$schema": "http://json-schema.org/draft-07/schema#",
3
"$id": "BASEURL/accountInfo.json",
4
"title": "accountInfo",
5
"description": "Customer Account Information",
6
"type": "object",
7
"properties": {
8
"accountIdentifier": {
9
"type": "string",
10
"maxLength": 64
11
},
12
"authenticationInformation": {
13
"type": "object",
14
"properties": {
15
"authenticationData": {
16
"type": "string",
17
"maxLength": 20000
18
},
19
"authenticationMethod": {
20
"type": "string",
21
"enum": ["guest", "merchantCredentials", "federatedID", "issuerCredentials", "thirdPartyAuthentication", "FIDO", "signedFIDO", "SRCassuranceData"]
22
},
23
"authenticationTimestamp": {
24
"type": "string",
25
"format": "date-time"
26
}
27
},
28
"required": ["authenticationMethod", "authenticationTimestamp"],
29
"additionalProperties": false
30
},
31
"accountAgeIndicator": {
32
"type": "string",
33
"enum": ["guestCheckout", "thisTransaction", "lessThan30Days", "from30To60Days", "moreThan60Days"],
34
"description": "Length of time that the customer has had the account with the merchant."
35
},
36
"accountChangeDate": {
37
"type": "string",
38
"format": "full-date",
39
"description": "YYYY-MM-DD"
40
},
41
"accountChangeIndicator": {
42
"type": "string",
43
"enum": ["thisTransaction", "lessThan30Days", "from30To60Days", "moreThan60Days"],
44
"description": "Length of time since the customer account information was last changed."
45
},
46
"accountCreationDate": {
47
"type": "string",
48
"format": "full-date",
49
"description": "YYYY-MM-DD"
50
},
51
"passwordChangeDate": {
52
"type": "string",
53
"format": "full-date",
54
"description": "YYYY-MM-DD"
55
},
56
"passwordChangeDateIndicator": {
57
"type": "string",
58
"enum": ["noChange", "thisTransaction", "lessThan30Days", "from30To60Days", "moreThan60Days"],
59
"description": "Indicates the length of time since the customer account had a password change or account reset."
60
},
61
"nbrOfPurchases": {
62
"type": "integer",
63
"maximum": 9999,
64
"description": "Number of purchases in the last 6 months."
65
},
66
"addCardAttemptsDay": {
67
"type": "integer",
68
"maximum": 999,
69
"description": "Number of Add Card attempts in the last 24 hours."
70
},
71
"nbrTransactionsDay": {
72
"type": "integer",
73
"maximum": 999,
74
"description": "Number of transactions (successful and abandoned) in the previous 24 hours."
75
},
76
"nbrTransactionsYear": {
77
"type": "integer",
78
"maximum": 999,
79
"description": "Number of transactions (successful and abandoned) in the previous year."
80
},
81
"paymentAccountAge": {
82
"type": "string",
83
"format": "full-date",
84
"description": "Date that the payment account was enrolled in the customer account in format YYYY-MM-DD."
85
},
86
"paymentAccountAgeIndicator": {
87
"type": "string",
88
"enum": ["guestCheckout", "thisTransaction", "lessThan30Days", "from30To60Days", "moreThan60Days"],
89
"description": "Indicates the length of time that the payment account was enrolled in the customer account."
90
},
91
"shipAddressUsageDate": {
92
"type": "string",
93
"format": "full-date",
94
"description": "Date when the shipping address used for this transaction was first used in format YYYY-MM-DD."
95
},
96
"shipAddressUsageIndicator": {
97
"type": "string",
98
"enum": ["thisTransaction", "lessThan30Days", "from30To60Days", "moreThan60Days"],
99
"description": "Indicates when the shipping address used for this transaction was first used."
100
},
101
"suspiciousAccActivity": {
102
"type": "boolean",
103
"description": "Indicates whether the merchant has experienced suspicious activity (including previous fraud) on the customer account."
104
}
105
},
106
"additionalProperties": false
107
}

Beispiel

1
{
2
"accountIdentifier": "joe.bloggs@acme.com",
3
"authenticationInformation": {
4
"authenticationMethod": "merchantCredentials",
5
"authenticationTimestamp": "2021-10-05T04:36:18+00:00"
6
},
7
"accountAgeIndicator": "moreThan60Days",
8
"accountChangeDate": "2019-01-23",
9
"accountChangeIndicator": "from30To60Days",
10
"accountCreationDate": "2016-01-01",
11
"passwordChangeDate": "2018-06-08",
12
"passwordChangeDateIndicator": "lessThan30Days",
13
"nbrOfPurchases": 4,
14
"addCardAttemptsDay": 0,
15
"nbrTransactionsDay": 0,
16
"nbrTransactionsYear": 5,
17
"paymentAccountAge": "2018-03-20",
18
"paymentAccountAgeIndicator": "thisTransaction",
19
"shipAddressUsageDate": "2017-10-14",
20
"shipAddressUsageIndicator": "moreThan60Days",
21
"suspiciousAccActivity": true
22
}

Paygate

Documentation (EN)

Dokumentation (DE)

Paygate Status