Signup

Overview

API enables users to register for a service by sending a request with their information and receiving a response with status and authentication credentials

Price :

500 monthly
Endpoint
HTTP MethodEndpoint
posthttps://api.itaxeasy.com/users/sign-up
Body Parameters
NameTypeRequiredDescription
first_nameStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
last_nameStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
phoneStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
emailStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
passwordStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
pincodeStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
Response Body
NameTypeRequiredDescription
idNumberYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
emailStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
first_nameStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
last_nameStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
phoneStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
pincodeStringYesThe id of the customer stored inside Apideck Vault. This can be a user id, account id, device id or whatever entity that can have integration within your app
{
    "status": true,
    "results": {
        "status": 200,
        "message": "Registration Successfull",
        "data": {
            "id": 134,
            "email": "Vineetka@gmail.com",
            "first_name": "Vineet",
            "last_name": "Sharma",
            "phone": "9146732156",
            "pincode": "2411122"
        },
    }
}