Admin SignUp

Overview

API allows administrators to log in to a system by sending a request with their credentials and receiving a response with authentication status and a session token.

Price :

500 monthly
Endpoint
HTTP MethodEndpoint
posthttps://api.itaxeasy.com/admin/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
isAdminbooleanYesThe 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",
            "isAdmin": true
        },
    }
}