POST api/ldb/EmpData
Request Information
URI Parameters
None.
Body Parameters
GetEmpData| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiUserName | string |
None. |
|
| Token | string |
None. |
|
| EmpId | integer |
None. |
|
| ProcId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApiUserName": "sample string 1",
"Token": "sample string 2",
"EmpId": 3,
"ProcId": 4
}
application/xml, text/xml
Sample:
<GetEmpData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMNSYAPI.Models"> <ApiUserName>sample string 1</ApiUserName> <EmpId>3</EmpId> <ProcId>4</ProcId> <Token>sample string 2</Token> </GetEmpData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LoginResponseEntity| Name | Description | Type | Additional information |
|---|---|---|---|
| respCode | string |
None. |
|
| respMessage | string |
None. |
|
| OfficeName | string |
None. |
|
| MobileNo | string |
None. |
|
| EmailId | string |
None. |
|
| OfficeId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"respCode": "sample string 1",
"respMessage": "sample string 2",
"OfficeName": "sample string 3",
"MobileNo": "sample string 4",
"EmailId": "sample string 5",
"OfficeId": 6
}
application/xml, text/xml
Sample:
<LoginResponseEntity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CMNSYAPI.Models"> <EmailId>sample string 5</EmailId> <MobileNo>sample string 4</MobileNo> <OfficeId>6</OfficeId> <OfficeName>sample string 3</OfficeName> <respCode>sample string 1</respCode> <respMessage>sample string 2</respMessage> </LoginResponseEntity>