POST api/NewRFQ/CancelRFQRequest
Request Information
URI Parameters
None.
Body Parameters
Collection of CancelRFQRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RFQID | integer |
None. |
|
| IndPropId | integer |
None. |
|
| IsRfqCanceled | boolean |
None. |
|
| UserId | integer |
None. |
|
| ClientID | integer |
None. |
|
| Action | string |
None. |
|
| CancelRemarks | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"RFQID": 1,
"IndPropId": 2,
"IsRfqCanceled": true,
"UserId": 4,
"ClientID": 5,
"Action": "sample string 6",
"CancelRemarks": "sample string 7"
},
{
"RFQID": 1,
"IndPropId": 2,
"IsRfqCanceled": true,
"UserId": 4,
"ClientID": 5,
"Action": "sample string 6",
"CancelRemarks": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfCancelRFQRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mice_RFQ_API.Models">
<CancelRFQRequestModel>
<Action>sample string 6</Action>
<CancelRemarks>sample string 7</CancelRemarks>
<ClientID>5</ClientID>
<IndPropId>2</IndPropId>
<IsRfqCanceled>true</IsRfqCanceled>
<RFQID>1</RFQID>
<UserId>4</UserId>
</CancelRFQRequestModel>
<CancelRFQRequestModel>
<Action>sample string 6</Action>
<CancelRemarks>sample string 7</CancelRemarks>
<ClientID>5</ClientID>
<IndPropId>2</IndPropId>
<IsRfqCanceled>true</IsRfqCanceled>
<RFQID>1</RFQID>
<UserId>4</UserId>
</CancelRFQRequestModel>
</ArrayOfCancelRFQRequestModel>
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.