Skip to content
NEWCollect for MSMEs: UPI Autopay, eNACH & remindersExplore app ↗

Register User

Register a user uniquely identified by phone number and email. This is used for seamless login and redirection into Jodo-hosted flows.

POST /api/v1/integrations/erp/users/register
Terminal window
curl -X POST 'https://[base_url]/api/v1/integrations/erp/users/register' \
--header 'Authorization: Basic <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "John Doe",
"phone": "9876543210",
"email": "john.doe@example.com"
}'
FieldTypeRequiredDescription
namestringYesFull name of the user.
phonestringYes10-digit phone number.
emailstringYesEmail address.
{
"status": "success",
"data": {
"registration_id": "user_1234"
}
}
FieldTypeDescription
data.registration_idstringUnique registration ID generated for the user.