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
NameDescriptionTypeAdditional 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": "1f645bc4-26ad-4cdc-8ddb-ea0654c199b1",
  "Date": "2026-05-26T21:03:06.8426338+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-26T21:03:06.8426338+02:00</Date>
  <EndTime>sample string 4</EndTime>
  <Id>1f645bc4-26ad-4cdc-8ddb-ea0654c199b1</Id>
  <StartTime>sample string 3</StartTime>
</ChangeOfMeetingTime>

Response Information

Resource Description

OK when change is successful. BadRequest when change failed.

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.