GET api/Route/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
RouteData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| TerritoryId | globally unique identifier |
Required |
|
| UserId | globally unique identifier |
None. |
|
| StartTime | date |
Required |
|
| EndTime | date |
None. |
|
| Status | integer |
Required |
|
| Identifier | string |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "7e09a3a7-d6bf-4a79-bc4e-898b5ad9889c",
"TerritoryId": "d309dd82-dbdf-4d2e-931e-ca34d1a93e71",
"UserId": "82fa008a-711c-4318-9fb3-eca8fd03c4af",
"StartTime": "2025-12-15T23:40:06.4491225-05:00",
"EndTime": "2025-12-15T23:40:06.4491225-05:00",
"Status": 4,
"Identifier": "sample string 5",
"Updated": "2025-12-15T23:40:06.4491225-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<RouteData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <EndTime>2025-12-15T23:40:06.4491225-05:00</EndTime> <Id>7e09a3a7-d6bf-4a79-bc4e-898b5ad9889c</Id> <Identifier>sample string 5</Identifier> <IsDeleted>1</IsDeleted> <StartTime>2025-12-15T23:40:06.4491225-05:00</StartTime> <Status>4</Status> <TerritoryId>d309dd82-dbdf-4d2e-931e-ca34d1a93e71</TerritoryId> <Updated>2025-12-15T23:40:06.4491225-05:00</Updated> <UserId>82fa008a-711c-4318-9fb3-eca8fd03c4af</UserId> </RouteData>