User Registrations

This API is used to identify if the user is registered or not.

POST {API_URL}/client/register-user

Auth required: YES

Please pass your API key as the username and API secret as the password as Basic Auth to access the endpoint

Query Parameters

Name
Type
Description

phone

String

phone number of the user

countryCode

String

contryCode of phone No.

email

String

email of the user

firstName

string

first name of the user

lastName

string

last name of the user

dateOfBirth

string

dob of the user

You need to pass either below paarmeters of the user from which the user,

{
    "firstName": "Hello",
    "lastName":"World",
    // "dateOfBirth": "",
    // "phone": "989231598",
    // "countryCode": "+91",
    "email": "newuseraccount@gmail.com"
}
{
    "message": "Account created successfully",
    "userId": "66ced0ebf72e8b7beddfe1e1"
}

Last updated