PUT api/PriceOverride/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
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": "e3378e6d-805c-456b-ac88-488d73f77249",
"OriginalPrice": 1.1,
"EnteredPrice": 1.1,
"Updated": "2025-12-15T23:41:40.2715895-05:00",
"ApprovalCode": "sample string 1",
"ProductId": "aa5b56ed-1a66-4802-8cdb-f2602340954f",
"RouteId": "f2e8ada5-8247-4b32-8189-efb4e1ee5ba1",
"StopId": "7678acc6-4b96-4fe8-8a3a-84754b206bb4",
"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>e3378e6d-805c-456b-ac88-488d73f77249</Id> <IsDeleted>1</IsDeleted> <OriginalPrice>1.1</OriginalPrice> <ProductId>aa5b56ed-1a66-4802-8cdb-f2602340954f</ProductId> <RouteId>f2e8ada5-8247-4b32-8189-efb4e1ee5ba1</RouteId> <StopId>7678acc6-4b96-4fe8-8a3a-84754b206bb4</StopId> <Updated>2025-12-15T23:41:40.2715895-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. |