POST api/ItemPrice
Request Information
URI Parameters
None.
Body Parameters
ItemPrice| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| ItemId | integer |
None. |
|
| PricingTierId | integer |
None. |
|
| PricingTierName | string |
None. |
|
| Price | decimal number |
None. |
|
| AuditId | integer |
None. |
|
| CreatedBy | integer |
None. |
|
| LastModifiedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"ItemId": 2,
"PricingTierId": 3,
"PricingTierName": "sample string 4",
"Price": 5.0,
"AuditId": 6,
"CreatedBy": 7,
"LastModifiedBy": 1
}
application/xml, text/xml
Sample:
<ItemPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IKimWebService.Domain"> <CreatedBy>7</CreatedBy> <LastModifiedBy>1</LastModifiedBy> <AuditId>6</AuditId> <Id>1</Id> <ItemId>2</ItemId> <Price>5</Price> <PricingTierId>3</PricingTierId> <PricingTierName>sample string 4</PricingTierName> </ItemPrice>
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. |