POST api/ScheduledCalls
Request Information
URI Parameters
None.
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "cc38984e-6ab5-48eb-a7b3-2201d5c09df1",
"SalesCallId": "51b724f2-70d9-41e7-ad4a-de07501b2bcd",
"RotationWeek": 1,
"RotationDay": 1,
"RouteSequence": 1,
"Identifier": "sample string 1",
"Updated": "2025-12-15T23:40:04.7575365-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>cc38984e-6ab5-48eb-a7b3-2201d5c09df1</Id> <Identifier>sample string 1</Identifier> <IsDeleted>1</IsDeleted> <RotationDay>1</RotationDay> <RotationWeek>1</RotationWeek> <RouteSequence>1</RouteSequence> <SalesCallId>51b724f2-70d9-41e7-ad4a-de07501b2bcd</SalesCallId> <Updated>2025-12-15T23:40:04.7575365-05:00</Updated> </ScheduledCallData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |