POST api/Quote/RequestSpecialFreight/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
Collection of ManufacturerFreightItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ManufacturerID | integer |
None. |
|
| ManufacturerName | string |
None. |
|
| Details | string |
None. |
|
| Send | boolean |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"manufacturerID": 1,
"manufacturerName": "sample string 2",
"details": "sample string 3",
"send": true
},
{
"manufacturerID": 1,
"manufacturerName": "sample string 2",
"details": "sample string 3",
"send": true
}
]
application/xml, text/xml
Sample:
<ArrayOfManufacturerFreightItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels">
<ManufacturerFreightItem>
<Details>sample string 3</Details>
<ManufacturerID>1</ManufacturerID>
<ManufacturerName>sample string 2</ManufacturerName>
<Send>true</Send>
</ManufacturerFreightItem>
<ManufacturerFreightItem>
<Details>sample string 3</Details>
<ManufacturerID>1</ManufacturerID>
<ManufacturerName>sample string 2</ManufacturerName>
<Send>true</Send>
</ManufacturerFreightItem>
</ArrayOfManufacturerFreightItem>
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.