Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"email": "aabbcc@abc.com",
"holderType": "INDIVIDUAL",
"areaCode": "+44",
"phone": "33557788",
"industryType": "ECOMMERCE",
"holder": {
"individual": {
"firstName": "Thomas",
"firstNameEnglish": "Thomas",
"lastName": "Jones",
"lastNameEnglish": "Jones",
"dateOfBirth": "1988-04-25",
"nationality": "FR",
"address": {
"addressLine1": "4455 Landing Lange APT 4",
"addressLine2": "Nashville TN 37011",
"city": "Paris",
"countryCode": "FR",
"postCode": "518 ACF"
},
"identification": {
"identificationType": "PASSPORT",
"identificationNumber": "34556443",
"identificationExpiryDate": "2099-12-31"
},
"occupation": "seller",
"permanentResidentialAddress": "98 rue Beauvau Marseille France"
}
}
}
Request samples
curl --location --request POST '/wallet' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "aabbcc@abc.com",
"holderType": "INDIVIDUAL",
"areaCode": "+44",
"phone": "33557788",
"industryType": "ECOMMERCE",
"holder": {
"individual": {
"firstName": "Thomas",
"firstNameEnglish": "Thomas",
"lastName": "Jones",
"lastNameEnglish": "Jones",
"dateOfBirth": "1988-04-25",
"nationality": "FR",
"address": {
"addressLine1": "4455 Landing Lange APT 4",
"addressLine2": "Nashville TN 37011",
"city": "Paris",
"countryCode": "FR",
"postCode": "518 ACF"
},
"identification": {
"identificationType": "PASSPORT",
"identificationNumber": "34556443",
"identificationExpiryDate": "2099-12-31"
},
"occupation": "seller",
"permanentResidentialAddress": "98 rue Beauvau Marseille France"
}
}
}'
Responses
application/json {
"walletId": "WA1557837855588385",
"holderType": "INDIVIDUAL"
}
Modified at 2023-12-20 10:54:01