POST api/NewRFQ/UpdateResendRequestData
Request Information
URI Parameters
None.
Body Parameters
UpdateResendDataModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RfqId | integer |
None. |
|
| IndviHeaderId | integer |
None. |
|
| PropertyId | integer |
None. |
|
| RoomChargeId | integer |
None. |
|
| Action | string |
None. |
|
| Userid | integer |
None. |
|
| ResendRemarks | string |
None. |
|
| ExpectedSingleRate | decimal number |
None. |
|
| ExpectedDoubleRate | decimal number |
None. |
|
| ExpectedRates | Collection of ExpectedRates |
None. |
Request Formats
application/json, text/json
Sample:
{
"RfqId": 1,
"IndviHeaderId": 2,
"PropertyId": 3,
"RoomChargeId": 4,
"Action": "sample string 5",
"Userid": 6,
"ResendRemarks": "sample string 7",
"ExpectedSingleRate": 8.0,
"ExpectedDoubleRate": 9.0,
"ExpectedRates": [
{
"ExpectedSingleRate": 1,
"ExpectedDoubleRate": 2,
"Id": 3,
"RoomType": "sample string 4"
},
{
"ExpectedSingleRate": 1,
"ExpectedDoubleRate": 2,
"Id": 3,
"RoomType": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<UpdateResendDataModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mice_RFQ_API.Models">
<Action>sample string 5</Action>
<ExpectedDoubleRate>9</ExpectedDoubleRate>
<ExpectedRates>
<ExpectedRates>
<ExpectedDoubleRate>2</ExpectedDoubleRate>
<ExpectedSingleRate>1</ExpectedSingleRate>
<Id>3</Id>
<RoomType>sample string 4</RoomType>
</ExpectedRates>
<ExpectedRates>
<ExpectedDoubleRate>2</ExpectedDoubleRate>
<ExpectedSingleRate>1</ExpectedSingleRate>
<Id>3</Id>
<RoomType>sample string 4</RoomType>
</ExpectedRates>
</ExpectedRates>
<ExpectedSingleRate>8</ExpectedSingleRate>
<IndviHeaderId>2</IndviHeaderId>
<PropertyId>3</PropertyId>
<ResendRemarks>sample string 7</ResendRemarks>
<RfqId>1</RfqId>
<RoomChargeId>4</RoomChargeId>
<Userid>6</Userid>
</UpdateResendDataModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.