POST PlanCare2Api/DaytimeActivity/MeetingSeries/Subscriptions
Save a new subscription to a daytime activity meeting.
Requires 'Start' permission for function DaytimeActivityOverview {16EDE7B1-4F4B-4C01-A7E4-79E73CF6B2E3}
Request Information
URI Parameters
None.
Body Parameters
New meeting subscription
DaytimeActivityMeetingSubscription| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id of the subscription |
globally unique identifier |
- |
| ClientId |
Id of the client |
integer |
Required |
| MeetingId |
The id of the meeting. |
globally unique identifier |
Required |
| Options |
Options of the subscription selected by the client. |
Collection of DaytimeActivityMeetingEnrollmentOption |
- |
| Start |
Start time of the subscription. |
date |
Required |
| End |
End time of the subscription. |
date |
Required |
| Remarks |
Remarks of the subscription. |
string |
- |
| PresenceReasonId |
Presence of the subscription. |
globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"Id": "217bd16e-0a92-499f-935d-da4a7d781880",
"ClientId": 2,
"MeetingId": "53e160c7-2b35-47a2-b4e6-1f518c86f2fc",
"Options": [
{
"$id": "2",
"Id": "62ad0bb2-5cbb-4b1e-9a34-da24670403c3",
"Name": "sample string 2",
"IsSystem": true,
"Type": 0,
"StartTime": "2026-05-26T22:07:23.5375804+02:00",
"EndTime": "2026-05-26T22:07:23.5375804+02:00",
"TransportTo": true,
"TransportBack": true,
"TransportType": 1,
"Description": "sample string 2"
},
{
"$ref": "2"
}
],
"Start": "2026-05-26T22:07:23.5375804+02:00",
"End": "2026-05-26T22:07:23.5375804+02:00",
"Remarks": "sample string 6",
"PresenceReasonId": "95af254a-0053-4525-a42f-4f13548bbd61"
}
application/xml, text/xml
Sample:
<DaytimeActivityMeetingSubscription xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.DaytimeActivity">
<ClientId>2</ClientId>
<End>2026-05-26T22:07:23.5375804+02:00</End>
<Id>217bd16e-0a92-499f-935d-da4a7d781880</Id>
<MeetingId>53e160c7-2b35-47a2-b4e6-1f518c86f2fc</MeetingId>
<Options>
<DaytimeActivityMeetingEnrollmentOption>
<EndTime>2026-05-26T22:07:23.5375804+02:00</EndTime>
<Id>62ad0bb2-5cbb-4b1e-9a34-da24670403c3</Id>
<IsSystem>true</IsSystem>
<Name>sample string 2</Name>
<StartTime>2026-05-26T22:07:23.5375804+02:00</StartTime>
<TransportBack>true</TransportBack>
<TransportTo>true</TransportTo>
<TransportType>Group</TransportType>
<Type>Default</Type>
</DaytimeActivityMeetingEnrollmentOption>
<DaytimeActivityMeetingEnrollmentOption>
<EndTime>2026-05-26T22:07:23.5375804+02:00</EndTime>
<Id>62ad0bb2-5cbb-4b1e-9a34-da24670403c3</Id>
<IsSystem>true</IsSystem>
<Name>sample string 2</Name>
<StartTime>2026-05-26T22:07:23.5375804+02:00</StartTime>
<TransportBack>true</TransportBack>
<TransportTo>true</TransportTo>
<TransportType>Group</TransportType>
<Type>Default</Type>
</DaytimeActivityMeetingEnrollmentOption>
</Options>
<PresenceReasonId>95af254a-0053-4525-a42f-4f13548bbd61</PresenceReasonId>
<Remarks>sample string 6</Remarks>
<Start>2026-05-26T22:07:23.5375804+02:00</Start>
</DaytimeActivityMeetingSubscription>
Response Information
Resource Description
Daytime activity meeting subscription. Created or BadRequest if enrollment is not valid.
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
- |
|
| Content | HttpContent |
- |
|
| StatusCode | HttpStatusCode |
- |
|
| ReasonPhrase | string |
- |
|
| Headers | Collection of Object |
- |
|
| RequestMessage | HttpRequestMessage |
- |
|
| IsSuccessStatusCode | boolean |
- |