GET PlanCare2Api/DaytimeActivity/MeetingSeries/{id}/options

Gets the available options of the meetings.

Requires 'Start' permission for function DaytimeActivityOverview {16EDE7B1-4F4B-4C01-A7E4-79E73CF6B2E3}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

MeetingSeries id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The list of available options of the meetings

Collection of DaytimeActivityMeetingEnrollmentOption
NameDescriptionTypeAdditional information
Id

Id of the SubscriptionOption

globally unique identifier

None.

Name

Name of the SubscriptionOption

string

None.

IsSystem

Is system option true / false

boolean

None.

Type

Option type

EnrollmentOptionType

None.

StartTime

Optional start time

date

None.

EndTime

Optional end time

date

None.

TransportTo

Requires transport to the appointment

boolean

None.

TransportBack

Requires transport back home

boolean

None.

TransportType

Type of transportation

DaytimeActivityTransportType

None.

Description

Readonly description of the option as used in PlanCare2 UI

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": "e24f849b-1b69-4ab6-8fc0-9f178fea17d4",
    "Name": "sample string 2",
    "IsSystem": true,
    "Type": 0,
    "StartTime": "2026-05-26T22:10:15.7752581+02:00",
    "EndTime": "2026-05-26T22:10:15.7752581+02:00",
    "TransportTo": true,
    "TransportBack": true,
    "TransportType": 1,
    "Description": "sample string 2"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDaytimeActivityMeetingEnrollmentOption xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.DaytimeActivity">
  <DaytimeActivityMeetingEnrollmentOption>
    <EndTime>2026-05-26T22:10:15.7752581+02:00</EndTime>
    <Id>e24f849b-1b69-4ab6-8fc0-9f178fea17d4</Id>
    <IsSystem>true</IsSystem>
    <Name>sample string 2</Name>
    <StartTime>2026-05-26T22:10:15.7752581+02:00</StartTime>
    <TransportBack>true</TransportBack>
    <TransportTo>true</TransportTo>
    <TransportType>Group</TransportType>
    <Type>Default</Type>
  </DaytimeActivityMeetingEnrollmentOption>
  <DaytimeActivityMeetingEnrollmentOption>
    <EndTime>2026-05-26T22:10:15.7752581+02:00</EndTime>
    <Id>e24f849b-1b69-4ab6-8fc0-9f178fea17d4</Id>
    <IsSystem>true</IsSystem>
    <Name>sample string 2</Name>
    <StartTime>2026-05-26T22:10:15.7752581+02:00</StartTime>
    <TransportBack>true</TransportBack>
    <TransportTo>true</TransportTo>
    <TransportType>Group</TransportType>
    <Type>Default</Type>
  </DaytimeActivityMeetingEnrollmentOption>
</ArrayOfDaytimeActivityMeetingEnrollmentOption>