POST api/PriceOverride
Request Information
URI Parameters
None.
Body Parameters
PriceOverrideData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| OriginalPrice | decimal number |
None. |
|
| EnteredPrice | decimal number |
None. |
|
| Updated | date |
None. |
|
| ApprovalCode | string |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| RouteId | globally unique identifier |
None. |
|
| StopId | globally unique identifier |
None. |
|
| IsDeleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "1b3de396-1227-46a0-90ab-098c5413116a",
"OriginalPrice": 1.1,
"EnteredPrice": 1.1,
"Updated": "2025-12-15T23:39:34.0350499-05:00",
"ApprovalCode": "sample string 1",
"ProductId": "1067f340-e2da-41d5-9be1-2bafeb7a84aa",
"RouteId": "89f6e635-0892-458f-b008-952a8f8dea9f",
"StopId": "0903b6f8-abb8-4ee1-9e89-29b58aeed3ca",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<PriceOverrideData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <ApprovalCode>sample string 1</ApprovalCode> <EnteredPrice>1.1</EnteredPrice> <Id>1b3de396-1227-46a0-90ab-098c5413116a</Id> <IsDeleted>1</IsDeleted> <OriginalPrice>1.1</OriginalPrice> <ProductId>1067f340-e2da-41d5-9be1-2bafeb7a84aa</ProductId> <RouteId>89f6e635-0892-458f-b008-952a8f8dea9f</RouteId> <StopId>0903b6f8-abb8-4ee1-9e89-29b58aeed3ca</StopId> <Updated>2025-12-15T23:39:34.0350499-05:00</Updated> </PriceOverrideData>
application/x-www-form-urlencoded
Sample:
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. |