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

Name Description Type Additional 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
Name Description Type Additional information
Id

Id of the SubscriptionOption

globally unique identifier

-

Name

Name of the SubscriptionOption

string

-

IsSystem

Is system option true / false

boolean

-

Type

Option type

EnrollmentOptionType

-

StartTime

Optional start time

date

Nullable

EndTime

Optional end time

date

Nullable

TransportTo

Requires transport to the appointment

boolean

Nullable

TransportBack

Requires transport back home

boolean

Nullable

TransportType

Type of transportation

<Nullable>DaytimeActivityTransportType

-

Description

Readonly description of the option as used in PlanCare2 UI

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": "a67ae573-52d7-4d81-80ff-03a7f78fb8a6",
    "Name": "sample string 2",
    "IsSystem": true,
    "Type": 0,
    "StartTime": "2026-05-26T21:12:21.3811805+02:00",
    "EndTime": "2026-05-26T21:12:21.3811805+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-26T21:12:21.3811805+02:00</EndTime>
    <Id>a67ae573-52d7-4d81-80ff-03a7f78fb8a6</Id>
    <IsSystem>true</IsSystem>
    <Name>sample string 2</Name>
    <StartTime>2026-05-26T21:12:21.3811805+02:00</StartTime>
    <TransportBack>true</TransportBack>
    <TransportTo>true</TransportTo>
    <TransportType>Group</TransportType>
    <Type>Default</Type>
  </DaytimeActivityMeetingEnrollmentOption>
  <DaytimeActivityMeetingEnrollmentOption>
    <EndTime>2026-05-26T21:12:21.3811805+02:00</EndTime>
    <Id>a67ae573-52d7-4d81-80ff-03a7f78fb8a6</Id>
    <IsSystem>true</IsSystem>
    <Name>sample string 2</Name>
    <StartTime>2026-05-26T21:12:21.3811805+02:00</StartTime>
    <TransportBack>true</TransportBack>
    <TransportTo>true</TransportTo>
    <TransportType>Group</TransportType>
    <Type>Default</Type>
  </DaytimeActivityMeetingEnrollmentOption>
</ArrayOfDaytimeActivityMeetingEnrollmentOption>