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

-

ActivityNumber

The number of the Activity

string

-

ActivityName

The name of the Activity

string

-

Location

The location of the Meeting

string

-

LocationId

The identifier of the Location of the Meeting

integer

-

Date

The date of the Meeting

date

-

StartTime

The start time of the Meeting

string

-

EndTime

The end time of the meeting

string

-

MaxCapacity

integer

Nullable

Status

The status of the meeting

MeetingStatus

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "MeetingSeriesId": "4e7a088c-cf08-405a-a286-e92400654198",
    "ActivityNumber": "sample string 2",
    "ActivityName": "sample string 3",
    "Location": "sample string 4",
    "LocationId": 5,
    "Date": "2026-05-26T21:12:19.734435+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-26T21:12:19.734435+02:00</Date>
    <EndTime>sample string 8</EndTime>
    <Location>sample string 4</Location>
    <LocationId>5</LocationId>
    <MaxCapacity>1</MaxCapacity>
    <MeetingSeriesId>4e7a088c-cf08-405a-a286-e92400654198</MeetingSeriesId>
    <StartTime>sample string 7</StartTime>
    <Status>Open</Status>
  </Meeting>
  <Meeting>
    <ActivityName>sample string 3</ActivityName>
    <ActivityNumber>sample string 2</ActivityNumber>
    <Date>2026-05-26T21:12:19.734435+02:00</Date>
    <EndTime>sample string 8</EndTime>
    <Location>sample string 4</Location>
    <LocationId>5</LocationId>
    <MaxCapacity>1</MaxCapacity>
    <MeetingSeriesId>4e7a088c-cf08-405a-a286-e92400654198</MeetingSeriesId>
    <StartTime>sample string 7</StartTime>
    <Status>Open</Status>
  </Meeting>
</ArrayOfMeeting>