SignUp Verification

Use this API to verify user who registered from frontend website.

 

HTTP REQUEST

POST /user/signup-verify

REQUEST BODY PARAMETERS

token
required
string Token
password
required
string Password
{
    "success": true,
    "data": {
        "response": {
            "acknowledgement": "Success",
            "data": {
                "userId": "126"
            },
            "error": {
                "code": "",
                "internal_message": "",
                "moreInfo": []
            }
        }
    }
}
Field Type Description
userId string user ID
Code Description
1018 ‘Missing password’
1019 ‘Password does not meet the requirements! It must be alphanumeric and atleast 8 characters long’
1030 ‘Signup email template was not found’
1031 ‘Missing token’
1032 ‘Invalid token’
1033 ‘Token expired. Please singup again and use the new token’

For general error details, click here.