Admin Login

Overview

API allows administrators to create a new account 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/admin/login
Body Parameters
NameTypeRequiredDescription
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
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
userTypeStringYesThe 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
pincodenumberYesThe 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
isverifiedBooleanYesThe 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": "login successfull",
        "data": {
            "id": 54,
            "email": "vxxxxxxxxxxu@gmail.com",
            "first_name": "Vineet",
            "last_name": "Sharma",
            "userType": "normal",
            "phone": "8xxxxxxxx5",
            "pincode": "241122",
            "isverified": true,
            "isAdmin": true
        },
}