Configuration
/www/includes/config.inc.php
URL for API Pattern
    <proto>://<host>/api/v1/<entity>[/<id>]
Request format
{
    'db-col-1':'value-1',
    'db-col-2':'value-2',
    'db-col-3':'value-3',
    'db-col-4':'value-4'
}
Response (LIST)
    {
        "data": [
            {
                "id": "1",
                "first_name": "Hassan",
                "last_name": "Khan",
                "email": "reza@itconquest.com",
                "phone_mobile": "",
                "address": "",
                "area": "",
                "city": "",
                "district_province": ""
            },
            .
            .
        ],
        "page_start": 0,
        "page_limit": 10,
        "records": 10
    }
Response (RECORD)
{
    "id": "371",
    "first_name": "Hassan",
    "last_name": "Khan",
    "email": "reza@itconquest.com",
    "phone_mobile": "",
    "password": "66a0e04f833d5b91ca5ad1f9ee4fa317",
    "usertype": "1",
    "designation": "Owner",
    "check_in": "0",
    "company_id": "1",
    "address": "",
    "area": "",
    "city": "",
    "district_province": ""
}