GET api/Stop/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
StopData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| RouteId | globally unique identifier |
Required |
|
| CustomerId | globally unique identifier |
Required |
|
| SalesOrderId | globally unique identifier |
Required |
|
| StartTime | date |
Required |
|
| EndTime | date |
None. |
|
| Notes | string |
None. |
|
| Status | integer |
Required |
|
| Identifier | string |
None. |
|
| Updated | date |
None. |
|
| DriverId | globally unique identifier |
None. |
|
| IsDeleted | integer |
None. |
|
| InvoiceId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "234faed8-8745-41fb-aabe-1145a7e90578",
"RouteId": "eb8fe2d7-2828-4f68-80cd-b25e27a92e53",
"CustomerId": "1bc984f5-96cb-4ffa-87c5-778914b9b633",
"SalesOrderId": "37f70a07-e2ed-4b00-895e-b8b0088e16f6",
"StartTime": "2025-12-15T23:39:47.8595397-05:00",
"EndTime": "2025-12-15T23:39:47.8595397-05:00",
"Notes": "sample string 5",
"Status": 6,
"Identifier": "sample string 7",
"Updated": "2025-12-15T23:39:47.8595397-05:00",
"DriverId": "a1149c9e-7c08-4b5c-bac2-277f4837eba1",
"IsDeleted": 1,
"InvoiceId": "2476519d-9113-42de-8a97-fb3f9e1c11e0"
}
application/xml, text/xml
Sample:
<StopData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <CustomerId>1bc984f5-96cb-4ffa-87c5-778914b9b633</CustomerId> <DriverId>a1149c9e-7c08-4b5c-bac2-277f4837eba1</DriverId> <EndTime>2025-12-15T23:39:47.8595397-05:00</EndTime> <Id>234faed8-8745-41fb-aabe-1145a7e90578</Id> <Identifier>sample string 7</Identifier> <InvoiceId>2476519d-9113-42de-8a97-fb3f9e1c11e0</InvoiceId> <IsDeleted>1</IsDeleted> <Notes>sample string 5</Notes> <RouteId>eb8fe2d7-2828-4f68-80cd-b25e27a92e53</RouteId> <SalesOrderId>37f70a07-e2ed-4b00-895e-b8b0088e16f6</SalesOrderId> <StartTime>2025-12-15T23:39:47.8595397-05:00</StartTime> <Status>6</Status> <Updated>2025-12-15T23:39:47.8595397-05:00</Updated> </StopData>