POST api/AddActiveHoursBulk
Request Information
URI Parameters
None.
Body Parameters
Collection of ActiveHoursModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ahid | integer |
None. |
|
| uuid | string |
None. |
|
| granularity | integer |
None. |
|
| source | string |
None. |
|
| standcount | integer |
None. |
|
| timestamp | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ahid": 1,
"uuid": "sample string 2",
"granularity": 3,
"source": "sample string 4",
"standcount": 5,
"timestamp": "sample string 6"
},
{
"ahid": 1,
"uuid": "sample string 2",
"granularity": 3,
"source": "sample string 4",
"standcount": 5,
"timestamp": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfActiveHoursModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WYH_Health.Models">
<ActiveHoursModel>
<ahid>1</ahid>
<granularity>3</granularity>
<source>sample string 4</source>
<standcount>5</standcount>
<timestamp>sample string 6</timestamp>
<uuid>sample string 2</uuid>
</ActiveHoursModel>
<ActiveHoursModel>
<ahid>1</ahid>
<granularity>3</granularity>
<source>sample string 4</source>
<standcount>5</standcount>
<timestamp>sample string 6</timestamp>
<uuid>sample string 2</uuid>
</ActiveHoursModel>
</ArrayOfActiveHoursModel>
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. |