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