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

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
Id

The id of the pcd care traject

integer

None.

DbcId

The id of the pcd care traject

integer

None.

Name

The name of the pcd care traject

string

None.

StartDate

The start date of the pcd care traject

date

None.

EndDate

The end date of the pcd care traject

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "DbcId": 2,
    "Name": "sample string 3",
    "StartDate": "2026-05-26T21:01:58.9719774+02:00",
    "EndDate": "2026-05-26T21:01:58.9719774+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-26T21:01:58.9719774+02:00</EndDate>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <StartDate>2026-05-26T21:01:58.9719774+02:00</StartDate>
  </PcdCareTraject>
  <PcdCareTraject>
    <DbcId>2</DbcId>
    <EndDate>2026-05-26T21:01:58.9719774+02:00</EndDate>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <StartDate>2026-05-26T21:01:58.9719774+02:00</StartDate>
  </PcdCareTraject>
</ArrayOfPcdCareTraject>