Employee Transfer
Transfer details of Employee
URL
hrdetails/emp_transfer
Method
POST
Request Media type
application/json
Response Media type
application/json
Request Parameters
Parameter | Data Type | Min | Max | M/O | Sample Value | Comments |
---|---|---|---|---|---|---|
key | String | 32 | 32 | M | mCeyytQEAd0NwGvKp0nogULUltoffcvH | Key obtained from authentiaction. |
deputeddate | String | 10 | 10 | M | 2019-11-01 | Deputed Date. Next Firm Join Date in YYYY-MM-DD format |
unitid | Integer | 1 | M | 45 | Source Unitid from Firm list |
Response Values
Name | Data Type | Min Length | Max Length | M/O | Sample Value | Comments |
---|---|---|---|---|---|---|
transfer | Array | M | Transfer Details | |||
employeecode | String | 1 | 6 | M | 3110 | Employee Code |
joindate | String | 10 | 10 | M | 2019-11-05 | Join date at Destination Firm |
firmfrom | Integer | 1 | M | 45 | Source Unit id | |
firmto | String | 1 | M | 44 | Destination Unit id |
Sample Request
{
"key": "QH7LlQ3wQMK9oYEKjeG5QOIVJQT4emeq",
"deputeddate": "2019-11-01",
"unitid": "45"
}
Sample Success Response
{
"transfer": [
{
"employeecode": "3110",
"joindate": "2019-11-05",
"firmfrom": "45",
"firmto": "44"
}
],
"e": 200,
"msg": "Success"
}
Sample Failure Responses
{
"e": 400,
"msg": "Bad Request."
}