POST api/ApplicationPrice
Request Information
URI Parameters
None.
Body Parameters
ApplicationPriceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PriceId | integer |
None. |
|
| ApplicationId | globally unique identifier |
None. |
|
| ApplicationName | string |
None. |
|
| ActualPrice | decimal number |
None. |
|
| DiscountPrice | decimal number |
None. |
|
| SecondPrice | decimal number |
None. |
|
| ThirdOnwardsPrice | decimal number |
None. |
|
| PresellerPrice | decimal number |
None. |
|
| DistributorPrice | decimal number |
None. |
|
| Status | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"PriceId": 1,
"ApplicationId": "4b1549a8-7ebe-4cc4-bb68-3791d595ea6a",
"ApplicationName": "sample string 3",
"ActualPrice": 4.0,
"DiscountPrice": 5.0,
"SecondPrice": 6.0,
"ThirdOnwardsPrice": 7.0,
"PresellerPrice": 8.0,
"DistributorPrice": 9.0,
"Status": true
}
application/xml, text/xml
Sample:
<ApplicationPriceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EditPointService.Models"> <ActualPrice>4</ActualPrice> <ApplicationId>4b1549a8-7ebe-4cc4-bb68-3791d595ea6a</ApplicationId> <ApplicationName>sample string 3</ApplicationName> <DiscountPrice>5</DiscountPrice> <DistributorPrice>9</DistributorPrice> <PresellerPrice>8</PresellerPrice> <PriceId>1</PriceId> <SecondPrice>6</SecondPrice> <Status>true</Status> <ThirdOnwardsPrice>7</ThirdOnwardsPrice> </ApplicationPriceModel>
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. |