GET invoice/{ticketId}/stopinfos/{shipRouteId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ticketId | integer |
Required |
|
| shipRouteId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
StopInfoDto| Name | Description | Type | Additional information |
|---|---|---|---|
| SortByType | integer |
None. |
|
| Sort | integer |
None. |
|
| TicketId | integer |
None. |
|
| ReturnId | integer |
None. |
|
| StopName | string |
None. |
|
| InvoiceNum | string |
None. |
|
| LocationId | integer |
None. |
|
| StopDurationInSeconds | integer |
None. |
|
| STypeMeaning | string |
None. |
|
| Skipped | boolean |
None. |
|
| Delivery | date |
None. |
|
| Eta | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"sortByType": 1,
"sort": 2,
"ticketId": 3,
"returnId": 4,
"stopName": "sample string 5",
"invoiceNum": "sample string 6",
"locationId": 7,
"stopDurationInSeconds": 8,
"sTypeMeaning": "sample string 9",
"skipped": true,
"delivery": "2026-05-05T21:33:04.0588122+00:00",
"eta": "2026-05-05T21:33:04.0588122+00:00"
}
text/html
Sample:
{"sortByType":1,"sort":2,"ticketId":3,"returnId":4,"stopName":"sample string 5","invoiceNum":"sample string 6","locationId":7,"stopDurationInSeconds":8,"sTypeMeaning":"sample string 9","skipped":true,"delivery":"2026-05-05T21:33:04.0588122+00:00","eta":"2026-05-05T21:33:04.0588122+00:00"}
application/xml, text/xml
Sample:
<StopInfoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ops.Data.Traxpod"> <Delivery>2026-05-05T21:33:04.0588122+00:00</Delivery> <Eta>2026-05-05T21:33:04.0588122+00:00</Eta> <InvoiceNum>sample string 6</InvoiceNum> <LocationId>7</LocationId> <ReturnId>4</ReturnId> <STypeMeaning>sample string 9</STypeMeaning> <Skipped>true</Skipped> <Sort>2</Sort> <SortByType>1</SortByType> <StopDurationInSeconds>8</StopDurationInSeconds> <StopName>sample string 5</StopName> <TicketId>3</TicketId> </StopInfoDto>