POST api/Schedules/UpsertConfirmation
Request Information
URI Parameters
None.
Body Parameters
ConfirmationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ScheduleKey | string |
None. |
|
| ConfirmationRanges | Collection of ConfirmationRange |
None. |
Request Formats
application/json, text/json
Sample:
{
"ScheduleKey": "sample string 1",
"ConfirmationRanges": [
{
"ConfirmationKey": "sample string 1",
"ConfirmFrom": "2025-10-28T19:29:41.7385239+03:00",
"ConfirmTo": "2025-10-28T19:29:41.7385239+03:00",
"IsDeleted": true
},
{
"ConfirmationKey": "sample string 1",
"ConfirmFrom": "2025-10-28T19:29:41.7385239+03:00",
"ConfirmTo": "2025-10-28T19:29:41.7385239+03:00",
"IsDeleted": true
}
]
}
application/xml, text/xml
Sample:
<ConfirmationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VezeetaCrmApi.Models">
<ConfirmationRanges>
<ConfirmationRange>
<ConfirmFrom>2025-10-28T19:29:41.7385239+03:00</ConfirmFrom>
<ConfirmTo>2025-10-28T19:29:41.7385239+03:00</ConfirmTo>
<ConfirmationKey>sample string 1</ConfirmationKey>
<IsDeleted>true</IsDeleted>
</ConfirmationRange>
<ConfirmationRange>
<ConfirmFrom>2025-10-28T19:29:41.7385239+03:00</ConfirmFrom>
<ConfirmTo>2025-10-28T19:29:41.7385239+03:00</ConfirmTo>
<ConfirmationKey>sample string 1</ConfirmationKey>
<IsDeleted>true</IsDeleted>
</ConfirmationRange>
</ConfirmationRanges>
<ScheduleKey>sample string 1</ScheduleKey>
</ConfirmationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
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. |