GET api/ScheduledCalls/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ScheduledCallData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| SalesCallId | globally unique identifier |
None. |
|
| RotationWeek | integer |
None. |
|
| RotationDay | integer |
None. |
|
| RouteSequence | integer |
None. |
|
| Identifier | string |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "cea0e445-d373-4906-828e-d54fff07b71e",
"SalesCallId": "c82644f2-0d12-4e9b-ac18-ddf4646b06ac",
"RotationWeek": 1,
"RotationDay": 1,
"RouteSequence": 1,
"Identifier": "sample string 1",
"Updated": "2025-12-15T23:43:21.9117021-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<ScheduledCallData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <Id>cea0e445-d373-4906-828e-d54fff07b71e</Id> <Identifier>sample string 1</Identifier> <IsDeleted>1</IsDeleted> <RotationDay>1</RotationDay> <RotationWeek>1</RotationWeek> <RouteSequence>1</RouteSequence> <SalesCallId>c82644f2-0d12-4e9b-ac18-ddf4646b06ac</SalesCallId> <Updated>2025-12-15T23:43:21.9117021-05:00</Updated> </ScheduledCallData>