POST api/ExaminationRooms/SendUpdateServicePriceRequest
Request Information
URI Parameters
None.
Body Parameters
Collection of UpdateServicePriceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OldPrice | decimal number |
None. |
|
| ProposedPrice | decimal number |
None. |
|
| ServiceName | string |
None. |
|
| ServicePriceKey | string |
None. |
|
| ExaminationRoomKey | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"OldPrice": 1.1,
"ProposedPrice": 2.1,
"ServiceName": "sample string 3",
"ServicePriceKey": "sample string 4",
"ExaminationRoomKey": "sample string 5"
},
{
"OldPrice": 1.1,
"ProposedPrice": 2.1,
"ServiceName": "sample string 3",
"ServicePriceKey": "sample string 4",
"ExaminationRoomKey": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfUpdateServicePriceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VezeetaCrmApi.Models">
<UpdateServicePriceModel>
<ExaminationRoomKey>sample string 5</ExaminationRoomKey>
<OldPrice>1.1</OldPrice>
<ProposedPrice>2.1</ProposedPrice>
<ServiceName>sample string 3</ServiceName>
<ServicePriceKey>sample string 4</ServicePriceKey>
</UpdateServicePriceModel>
<UpdateServicePriceModel>
<ExaminationRoomKey>sample string 5</ExaminationRoomKey>
<OldPrice>1.1</OldPrice>
<ProposedPrice>2.1</ProposedPrice>
<ServiceName>sample string 3</ServiceName>
<ServicePriceKey>sample string 4</ServicePriceKey>
</UpdateServicePriceModel>
</ArrayOfUpdateServicePriceModel>
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. |