POST api/EmpShift/InsertMultiArea
Request Information
URI Parameters
None.
Body Parameters
ShiftRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| LoginId | string |
None. |
|
| ShiftDate | string |
None. |
|
| AreaIDs | Collection of integer |
None. |
|
| DealerId | integer |
None. |
|
| COMPID | integer |
None. |
|
| Createdby | string |
None. |
|
| Createondate | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoginId": "sample string 1",
"ShiftDate": "sample string 2",
"AreaIDs": [
1,
2
],
"DealerId": 3,
"COMPID": 4,
"Createdby": "sample string 5",
"Createondate": "sample string 6"
}
text/html
Sample:
{"LoginId":"sample string 1","ShiftDate":"sample string 2","AreaIDs":[1,2],"DealerId":3,"COMPID":4,"Createdby":"sample string 5","Createondate":"sample string 6"}
application/xml, text/xml
Sample:
<EmpShiftController.ShiftRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KeyCodeWebsApis.Controllers">
<AreaIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</AreaIDs>
<COMPID>4</COMPID>
<Createdby>sample string 5</Createdby>
<Createondate>sample string 6</Createondate>
<DealerId>3</DealerId>
<LoginId>sample string 1</LoginId>
<ShiftDate>sample string 2</ShiftDate>
</EmpShiftController.ShiftRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |