GET api/Employee/GetEmployeeDocumentNew/{empid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| empid | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of EmployeeDocument| Name | Description | Type | Additional information |
|---|---|---|---|
| edid | integer |
None. |
|
| empid | string |
None. |
|
| financialyear | string |
None. |
|
| al | integer |
None. |
|
| jd | integer |
None. |
|
| icc | integer |
None. |
|
| sd | integer |
None. |
|
| ss | integer |
None. |
|
| cp | integer |
None. |
|
| documenttype | string |
None. |
|
| documentpath | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"edid": 1,
"empid": "sample string 2",
"financialyear": "sample string 3",
"al": 1,
"jd": 1,
"icc": 1,
"sd": 1,
"ss": 1,
"cp": 1,
"documenttype": "sample string 4",
"documentpath": "sample string 5"
},
{
"edid": 1,
"empid": "sample string 2",
"financialyear": "sample string 3",
"al": 1,
"jd": 1,
"icc": 1,
"sd": 1,
"ss": 1,
"cp": 1,
"documenttype": "sample string 4",
"documentpath": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfEmployeeDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JankariPortalPIFAPI.Models">
<EmployeeDocument>
<al>1</al>
<cp>1</cp>
<documentpath>sample string 5</documentpath>
<documenttype>sample string 4</documenttype>
<edid>1</edid>
<empid>sample string 2</empid>
<financialyear>sample string 3</financialyear>
<icc>1</icc>
<jd>1</jd>
<sd>1</sd>
<ss>1</ss>
</EmployeeDocument>
<EmployeeDocument>
<al>1</al>
<cp>1</cp>
<documentpath>sample string 5</documentpath>
<documenttype>sample string 4</documenttype>
<edid>1</edid>
<empid>sample string 2</empid>
<financialyear>sample string 3</financialyear>
<icc>1</icc>
<jd>1</jd>
<sd>1</sd>
<ss>1</ss>
</EmployeeDocument>
</ArrayOfEmployeeDocument>