Add a Receive User
Read on how to add a receive user
POST /users
POST /userscurl --location --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": "Edmund",
"middle_name": "",
"last_name": "Hillary",
"email":"[email protected]",
"gender": "male",
"date_of_birth":"2000-01-01",
"mobile_phone": "9879879870",
"address_line1": "500 El Camino Real Santa Clara",
"city": "Santa Clara",
"zipcode": "95053",
"state": "CA",
"country":"US",
"business":false,
"occupation":"Engineer",
"ip_address":"10.0.0.1",
"user_relationship": "BROTHER",
"send_user_id":UUID,
"type":"RECEIVE"
}'Last updated