Looking for ePay classic docs? Go to docs.epay.dk
ePay documentationDocsePay documentation

Card

panstring

The masked account number of the paying card. If the transaction is token based, like ApplePay, this will instead contain the TAN (Token PAN).

Example:
"12345678XXXX1234"
expireMonthstring

The month the card expires in. A card expires at the end of the month.

Example:
"07"
expireYearstring

The year the card expires in.

Example:
"35"
parstring
Nullable

The "Primary Account Reference" is a unique non-sensitive reference to the specific card. This will have the same value for any payment made with the same card even across wallets such as ApplePay. This can be used for loyalty systems or fraud prevention systems which needs to uniquely identify cards. The value is not always available. Availability depends on the used acquirer.

Example:
"8F1B7C2QX4Z9N3V6M2R0K8YD5LJTPH"
Issuerstring
Nullable

The name of the card issuer (Bank)

Example:
"Danske Bank"
Schemestring
Nullable

The network scheme such as Visa and Mastercard of the card

Example:
"Visa"
Countrystring
Nullable

The alpha-2 code of the country the card was issued in

Example:
"DK"
Segmentstring
Nullable

The customer segment the card is issued to. This can be used to identify consumer vs business cards.

Possible values:
"consumer""business""payouts"
Example:
"consumer"
Fundingstring
Nullable

The type of funding behind payments made from the card. This can be used identify debit vs credit cards.

Possible values:
"debit""credit""prepaid"
Example:
"debit"
Card
{  "pan": "12345678XXXX1234",  "expireMonth": "07",  "expireYear": "35",  "par": "8F1B7C2QX4Z9N3V6M2R0K8YD5LJTPH",  "Issuer": "Danske Bank",  "Scheme": "Visa",  "Country": "DK",  "Segment": "consumer",  "Funding": "debit"}