GET PlanCare2Api/ClientplansV2/Sectors

Retrieve all clientplan Sectors.

Requires 'Start' permission for function ClientPlanOverview {7757BB23-A132-438A-9601-28E6BF9E4CA7}

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of Sectors structures

Collection of ClientplanSector
Name Description Type Additional information
Id

The internal id of the sector.

integer

-

Name

The name of the sector.

string

-

StartDate

The start date of the sector.

date

-

ActionVisible

Whether or not the actions in the sector are visible for reporting.

boolean

-

GoalElaborationType

The goal elaboration type.

ClientplanSectorGoalElaborationType

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "Name": "sample string 2",
    "StartDate": "2026-05-26T21:10:16.229832+02:00",
    "ActionVisible": true,
    "GoalElaborationType": {
      "$id": "2",
      "Id": 0,
      "Description": "sample string 1"
    }
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfClientplanSector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Clientplan">
  <ClientplanSector>
    <ActionVisible>true</ActionVisible>
    <GoalElaborationType>
      <Description>sample string 1</Description>
      <Id>SubGoalAndAction</Id>
    </GoalElaborationType>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <StartDate>2026-05-26T21:10:16.229832+02:00</StartDate>
  </ClientplanSector>
  <ClientplanSector>
    <ActionVisible>true</ActionVisible>
    <GoalElaborationType>
      <Description>sample string 1</Description>
      <Id>SubGoalAndAction</Id>
    </GoalElaborationType>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <StartDate>2026-05-26T21:10:16.229832+02:00</StartDate>
  </ClientplanSector>
</ArrayOfClientplanSector>