POST api/File/AddGuidedSelling?id={id}&type={type}&pricingStructureID={pricingStructureID}&contractID={contractID}&isTaxable={isTaxable}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| type | string |
Required |
|
| pricingStructureID | integer |
Required |
|
| contractID | integer |
Required |
|
| isTaxable | boolean |
Required |
Body Parameters
GuidedItem| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ModelNumber | string |
None. |
|
| UnitName | string |
None. |
|
| Price | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"modelNumber": "sample string 2",
"unitName": "sample string 3",
"price": 4.0
}
application/xml, text/xml
Sample:
<GuidedItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GameTimeBAL.ViewModels"> <ID>1</ID> <ModelNumber>sample string 2</ModelNumber> <Price>4</Price> <UnitName>sample string 3</UnitName> </GuidedItem>
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.