GET PlanCare2Api/Projects/pcd/{projectId}/CareTrajects?referenceDate={referenceDate}

Fetch care trajects that are available to a project at a certain date and contract

Requires 'Start' permission for function RegistrationOverview {2C05CECA-9B4D-4159-86C6-B39F4E167D86}

Request Information

URI Parameters

Name Description Type Additional information
projectId

The Base64 encoded identifier of the project

string

Required

referenceDate

The reference date

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of PcdCareTraject
Name Description Type Additional information
Id

The id of the pcd care traject

integer

-

DbcId

The id of the pcd care traject

integer

-

Name

The name of the pcd care traject

string

-

StartDate

The start date of the pcd care traject

date

-

EndDate

The end date of the pcd care traject

date

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "DbcId": 2,
    "Name": "sample string 3",
    "StartDate": "2026-05-26T23:13:13.5875904+02:00",
    "EndDate": "2026-05-26T23:13:13.5875904+02:00"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPcdCareTraject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
  <PcdCareTraject>
    <DbcId>2</DbcId>
    <EndDate>2026-05-26T23:13:13.5875904+02:00</EndDate>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <StartDate>2026-05-26T23:13:13.5875904+02:00</StartDate>
  </PcdCareTraject>
  <PcdCareTraject>
    <DbcId>2</DbcId>
    <EndDate>2026-05-26T23:13:13.5875904+02:00</EndDate>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <StartDate>2026-05-26T23:13:13.5875904+02:00</StartDate>
  </PcdCareTraject>
</ArrayOfPcdCareTraject>