POST CheckVendorMapping?databaseKey={databaseKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| databaseKey | string |
Required |
Body Parameters
UploadEmployeeBo| Name | Description | Type | Additional information |
|---|---|---|---|
| Date | string |
None. |
|
| Shift | string |
None. |
|
| Employees | Collection of EmployeeRow |
None. |
Request Formats
application/json, text/json
Sample:
{
"Date": "sample string 1",
"Shift": "sample string 2",
"Employees": [
{
"EmpCode": "sample string 1",
"EmpName": "sample string 2",
"SCName": "sample string 3",
"EmpType": "sample string 4",
"Hours": 5.0,
"Department": "sample string 6"
},
{
"EmpCode": "sample string 1",
"EmpName": "sample string 2",
"SCName": "sample string 3",
"EmpType": "sample string 4",
"Hours": 5.0,
"Department": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<UploadEmployeeBo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rx2025_Api.Controllers">
<Date>sample string 1</Date>
<Employees>
<EmployeeRow>
<Department>sample string 6</Department>
<EmpCode>sample string 1</EmpCode>
<EmpName>sample string 2</EmpName>
<EmpType>sample string 4</EmpType>
<Hours>5</Hours>
<SCName>sample string 3</SCName>
</EmployeeRow>
<EmployeeRow>
<Department>sample string 6</Department>
<EmpCode>sample string 1</EmpCode>
<EmpName>sample string 2</EmpName>
<EmpType>sample string 4</EmpType>
<Hours>5</Hours>
<SCName>sample string 3</SCName>
</EmployeeRow>
</Employees>
<Shift>sample string 2</Shift>
</UploadEmployeeBo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.