GET api/PriceOverride/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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. |
Response Formats
application/json, text/json
Sample:
{
"Id": "06023bd8-5352-4f6b-9cdf-75ab191f90ab",
"OriginalPrice": 1.1,
"EnteredPrice": 1.1,
"Updated": "2025-12-15T23:42:55.9378573-05:00",
"ApprovalCode": "sample string 1",
"ProductId": "5bf33515-3492-4338-9b8c-73dac84afdd4",
"RouteId": "a3cba7c8-344b-46ad-9007-8550b72a4a14",
"StopId": "8f0511a3-6ac3-47b8-a3f8-1bbdcb0a3005",
"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>06023bd8-5352-4f6b-9cdf-75ab191f90ab</Id> <IsDeleted>1</IsDeleted> <OriginalPrice>1.1</OriginalPrice> <ProductId>5bf33515-3492-4338-9b8c-73dac84afdd4</ProductId> <RouteId>a3cba7c8-344b-46ad-9007-8550b72a4a14</RouteId> <StopId>8f0511a3-6ac3-47b8-a3f8-1bbdcb0a3005</StopId> <Updated>2025-12-15T23:42:55.9378573-05:00</Updated> </PriceOverrideData>