This endpoint creates a customer.
curl --request POST \
--url https://api-sandbox.lumx.io/customers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "individual",
"name": "William Default",
"taxId": "123.456.789-00",
"birthDate": "1990-01-01",
"country": "BRA",
"email": "william.default@example.com"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "individual",
"name": "William Default",
"taxId": "123.456.789-00",
"link": "https://in.sumsub.com/websdk/p/sbx_aA00bB11cC33dD44",
"birthDate": "1990-01-01",
"country": "BRA",
"email": "william.default@example.com",
"walletAddress": "0x1234567890123456789012345678901234567890",
"blockExplorerUrl": "https://amoy.polygonscan.com/address/0x1234567890123456789012345678901234567890",
"verification": {
"status": "not_started",
"level": "standard"
},
"transactionLimits": {
"single": "1000.00",
"daily": "10000.00",
"monthly": "100000.00"
},
"createdAt": "2021-01-01T00:00:00Z",
"updatedAt": "2021-01-01T00:00:00Z"
}
Bearer authentication header on the format Bearer <API_KEY>
.
Customer type is individual.
Resource successfully created.
Customer type is individual.
curl --request POST \
--url https://api-sandbox.lumx.io/customers \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "individual",
"name": "William Default",
"taxId": "123.456.789-00",
"birthDate": "1990-01-01",
"country": "BRA",
"email": "william.default@example.com"
}'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "individual",
"name": "William Default",
"taxId": "123.456.789-00",
"link": "https://in.sumsub.com/websdk/p/sbx_aA00bB11cC33dD44",
"birthDate": "1990-01-01",
"country": "BRA",
"email": "william.default@example.com",
"walletAddress": "0x1234567890123456789012345678901234567890",
"blockExplorerUrl": "https://amoy.polygonscan.com/address/0x1234567890123456789012345678901234567890",
"verification": {
"status": "not_started",
"level": "standard"
},
"transactionLimits": {
"single": "1000.00",
"daily": "10000.00",
"monthly": "100000.00"
},
"createdAt": "2021-01-01T00:00:00Z",
"updatedAt": "2021-01-01T00:00:00Z"
}