GET PlanCare2Api/Projects/{projectId}/CareTrajects?referenceDate={referenceDate}
Fetch care trajects that are available to a project at a certain date and contract Note: This endpoint is obsolete and will be deleted in a future version of the API. Use the endpoint PlanCare2Api/Projects/pcd/{projectId}/CareTrajects instead.
Requires 'Start' permission for function RegistrationOverview {2C05CECA-9B4D-4159-86C6-B39F4E167D86}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| projectId |
The 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 |
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-26T22:03:35.4128897+02:00",
"EndDate": "2026-05-26T22:03:35.4128897+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-26T22:03:35.4128897+02:00</EndDate>
<Id>1</Id>
<Name>sample string 3</Name>
<StartDate>2026-05-26T22:03:35.4128897+02:00</StartDate>
</PcdCareTraject>
<PcdCareTraject>
<DbcId>2</DbcId>
<EndDate>2026-05-26T22:03:35.4128897+02:00</EndDate>
<Id>1</Id>
<Name>sample string 3</Name>
<StartDate>2026-05-26T22:03:35.4128897+02:00</StartDate>
</PcdCareTraject>
</ArrayOfPcdCareTraject>