POST PlanCare2Api/DaytimeActivity/MeetingSeries/ChangeOfMeetingTime
Change the start time and/or end time of a meeting. The day can not be changed.
Requires 'Start' permission for function DaytimeActivityProgramClient {E7F4025B-80C9-4E2A-8537-129E3D0CC2C9}
Request Information
URI Parameters
None.
Body Parameters
Change the time of a meeting on given date
ChangeOfMeetingTime| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The id of the meeting series. |
globally unique identifier |
None |
| Date |
Date of the occurrence of the meeting to change. |
date |
None |
| StartTime |
New start time of the meeting occurrence in XX:XX format. Example: 06:15 |
string |
None |
| EndTime |
New end time of the meeting occurrence in XX:XX format. Example: 06:45 |
string |
None |
Request Formats
application/json, text/json
Sample:
{
"Id": "ee9564bc-4bec-4d86-babe-0b82eb1e9a41",
"Date": "2026-05-26T23:13:55.3691987+02:00",
"StartTime": "sample string 3",
"EndTime": "sample string 4"
}
application/xml, text/xml
Sample:
<ChangeOfMeetingTime xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.DaytimeActivity"> <Date>2026-05-26T23:13:55.3691987+02:00</Date> <EndTime>sample string 4</EndTime> <Id>ee9564bc-4bec-4d86-babe-0b82eb1e9a41</Id> <StartTime>sample string 3</StartTime> </ChangeOfMeetingTime>
Response Information
Resource Description
OK when change is successful. BadRequest when change failed.
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 |