Register a User
Read on how to create SEND users in our system
POST /users
POST /userscurl --location -g --request POST '{{url}}/users' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "Tenzin",
"last_name": "Norgay",
"email": "[email protected]",
"gender": "female",
"date_of_birth": "2000-01-01",
"address_line1": "500 8 El Camino Real Santa Clara",
"mobile_phone": "9879879870",
"city": "Santa Clara",
"zipcode": "95053",
"state": "CA",
"country": "US",
"ip_address": "73.85.79.9",
"type": "SEND",
"physical_documents": [
{
"document_value": "data:image/jpg;base64,SUQsasasasas909090==",
"document_type": "STATE_ID",
"country": "US",
"expiry_date": "2025-03-09",
"state": "CA"
}
],
"virtual_documents": [
{
"document_value": "111111111",
"document_type": "PASSPORT",
"expiry_date": "2025-03-09",
"id_issuing_authority": "CA",
"country": "US",
"state": "CA"
},
{
"document_value": "111111111",
"document_type": "SSN",
"expiry_date": "2025-03-09",
"id_issuing_authority": "CA",
"country": "US",
"state": "CA"
}
]
}'Last updated