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

-

Date

Date of the occurrence of the meeting to change.

date

-

StartTime

New start time of the meeting occurrence in XX:XX format. Example: 06:15

string

-

EndTime

New end time of the meeting occurrence in XX:XX format. Example: 06:45

string

-

Request Formats

application/json, text/json

Sample:
{
  "Id": "84113246-67b1-43d0-b485-d13663468982",
  "Date": "2026-05-26T23:13:14.1969795+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:14.1969795+02:00</Date>
  <EndTime>sample string 4</EndTime>
  <Id>84113246-67b1-43d0-b485-d13663468982</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

-

Content

HttpContent

-

StatusCode

HttpStatusCode

-

ReasonPhrase

string

-

Headers

Collection of Object

-

RequestMessage

HttpRequestMessage

-

IsSuccessStatusCode

boolean

-