Create A record

This page will contains information about, how to create employee data using rest /employee.

Route Method Sample Json Results
/create POST {"name":"test","salary":"123","age":"23"}
{
    "status": "success",
    "data": {
        "name": "test",
        "salary": "123",
        "age": "23",
        "id": 25
    }
}