POST api/ResDemand/send?userID={userID}&RHD={RHD}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userID | integer |
Required |
|
| RHD | integer |
Required |
Body Parameters
Collection of rsPlans| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| plID | integer |
None. |
|
| rbid | integer |
None. |
|
| rID | integer |
None. |
|
| pID | integer |
None. |
|
| stg | integer |
None. |
|
| ia | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"id": 1,
"plID": 2,
"rbid": 3,
"rID": 4,
"pID": 5,
"stg": 6,
"ia": true
},
{
"id": 1,
"plID": 2,
"rbid": 3,
"rID": 4,
"pID": 5,
"stg": 6,
"ia": true
}
]
application/xml, text/xml
Sample:
<ArrayOfrsPlans xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Login.Controllers.OMS">
<rsPlans>
<ia>true</ia>
<id>1</id>
<pID>5</pID>
<plID>2</plID>
<rID>4</rID>
<rbid>3</rbid>
<stg>6</stg>
</rsPlans>
<rsPlans>
<ia>true</ia>
<id>1</id>
<pID>5</pID>
<plID>2</plID>
<rID>4</rID>
<rbid>3</rbid>
<stg>6</stg>
</rsPlans>
</ArrayOfrsPlans>
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. |