CustomerInfo
Customer info. These data points are used during SCA/3DS and is required for some schemes. These data may also be sent to the specific payment provider, if required to complete the payment such as Klarna. It is recommended to send all the info that is available to improve the approval rate.
The first name of the paying customer.
Possible values: non-empty
PeterThe last name of the paying customer.
Possible values: non-empty
NielsenThe date of birth of the cardholder in YYYY-MM-DD format.
2000-07-25The email of the paying customer.
Possible values: non-empty
email@example.comE.164 phone number format with a single space between country code and local number. No additional spaces allowed.
Format: "+[countryCode] [number]".
Possible values: Value must match regular expression ^\+\d{1,3} \d+$
+45 12345678shippingAddress objectnullable
The shipping address of the purchase. If no wares are shipped, leave this empty. If billing and shipping address is the same, then fill both properties with identical information.
ISO 3166-1 alpha-2 country code
Possible values: >= 2 characters and <= 2 characters
DKThe local postal code of the address
Possible values: non-empty and <= 16 characters
1400The city
Possible values: non-empty and <= 50 characters
KøbenhavnThe first address line. Most address only has a singular line.
Possible values: non-empty and <= 50 characters
Torvegade 45Second address line. Only use if address contains multiple lines. Always start with line1.
Possible values: non-empty and <= 50 characters
2. th.Third address line. Only use if address contains multiple lines. Always start with line1 and line2.
Possible values: non-empty and <= 50 characters
ChristianshavnbillingAddress objectnullable
The billing address of the customer. Often the personal address of the customer or the business address of paying company. If billing and shipping address is the same, then fill both properties with identical information.
ISO 3166-1 alpha-2 country code
Possible values: >= 2 characters and <= 2 characters
DKThe local postal code of the address
Possible values: non-empty and <= 16 characters
1400The city
Possible values: non-empty and <= 50 characters
KøbenhavnThe first address line. Most address only has a singular line.
Possible values: non-empty and <= 50 characters
Torvegade 45Second address line. Only use if address contains multiple lines. Always start with line1.
Possible values: non-empty and <= 50 characters
2. th.Third address line. Only use if address contains multiple lines. Always start with line1 and line2.
Possible values: non-empty and <= 50 characters
Christianshavn{
"firstName": "Peter",
"lastName": "Nielsen",
"birthdate": "2000-07-25",
"email": "email@example.com",
"phoneNumber": "+45 12345678",
"shippingAddress": {
"countryCode": "DK",
"postalCode": "1400",
"city": "København",
"line1": "Torvegade 45"
},
"billingAddress": {
"countryCode": "DK",
"postalCode": "1400",
"city": "København",
"line1": "Torvegade 45"
}
}