GET PlanCare2Api/DaytimeActivity/MeetingSeries/meetings?dateFrom={dateFrom}&dateUntil={dateUntil}
Gets the meetings in a specified range.
Requires 'Start' permission for function DaytimeActivityProgramClient {E7F4025B-80C9-4E2A-8537-129E3D0CC2C9}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dateFrom |
Start date of the range |
date |
Required |
| dateUntil |
End date of the range |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
The list of requested meetings
Collection of Meeting| Name | Description | Type | Additional information |
|---|---|---|---|
| MeetingSeriesId |
The identifier of the MeetingSeries |
globally unique identifier |
None. |
| ActivityNumber |
The number of the Activity |
string |
None. |
| ActivityName |
The name of the Activity |
string |
None. |
| Location |
The location of the Meeting |
string |
None. |
| LocationId |
The identifier of the Location of the Meeting |
integer |
None. |
| Date |
The date of the Meeting |
date |
None. |
| StartTime |
The start time of the Meeting |
string |
None. |
| EndTime |
The end time of the meeting |
string |
None. |
| MaxCapacity | integer |
None. |
|
| Status |
The status of the meeting |
MeetingStatus |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"MeetingSeriesId": "dd0df851-e7e0-4e33-9971-b638b3f6f7bc",
"ActivityNumber": "sample string 2",
"ActivityName": "sample string 3",
"Location": "sample string 4",
"LocationId": 5,
"Date": "2026-05-26T22:10:16.4159101+02:00",
"StartTime": "sample string 7",
"EndTime": "sample string 8",
"MaxCapacity": 1,
"Status": 0
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfMeeting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.DaytimeActivity">
<Meeting>
<ActivityName>sample string 3</ActivityName>
<ActivityNumber>sample string 2</ActivityNumber>
<Date>2026-05-26T22:10:16.4159101+02:00</Date>
<EndTime>sample string 8</EndTime>
<Location>sample string 4</Location>
<LocationId>5</LocationId>
<MaxCapacity>1</MaxCapacity>
<MeetingSeriesId>dd0df851-e7e0-4e33-9971-b638b3f6f7bc</MeetingSeriesId>
<StartTime>sample string 7</StartTime>
<Status>Open</Status>
</Meeting>
<Meeting>
<ActivityName>sample string 3</ActivityName>
<ActivityNumber>sample string 2</ActivityNumber>
<Date>2026-05-26T22:10:16.4159101+02:00</Date>
<EndTime>sample string 8</EndTime>
<Location>sample string 4</Location>
<LocationId>5</LocationId>
<MaxCapacity>1</MaxCapacity>
<MeetingSeriesId>dd0df851-e7e0-4e33-9971-b638b3f6f7bc</MeetingSeriesId>
<StartTime>sample string 7</StartTime>
<Status>Open</Status>
</Meeting>
</ArrayOfMeeting>