GET PlanCare2Api/ArrangementProductActs/Arrangements?clientplanId={clientplanId}&referenceDate={referenceDate}

Fetches the arrangements for a specific clientplan on the specified reference date.

Request Information

URI Parameters

Name Description Type Additional information
clientplanId

The clientplan identifier.

integer

Required

referenceDate

The reference date.

date

Required

Body Parameters

None.

Response Information

Resource Description

ClientplanArrangement

ClientplanArrangement
Name Description Type Additional information
ClientplanId

The clientplan identifier.

integer

-

Arrangements

The arrangements.

Collection of Arrangement

-

Response Formats

application/json, text/json

Sample:
{
  "ClientplanId": 1,
  "Arrangements": [
    {
      "$id": "2",
      "Id": 1,
      "Name": "sample string 2",
      "Description": "sample string 3",
      "NormTime": 1,
      "Price": 1.0,
      "StartDate": "2026-05-26T23:18:44.9581264+02:00",
      "EndDate": "2026-05-26T23:18:44.9581264+02:00",
      "ContractType": {
        "$id": "3",
        "Id": 1,
        "Code": "sample string 2",
        "Description": "sample string 3",
        "IsActive": true,
        "Source": "sample string 5"
      }
    },
    {
      "$ref": "2"
    }
  ]
}

application/xml, text/xml

Sample:
<ClientplanArrangement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Clientplan">
  <Arrangements>
    <Arrangement>
      <ContractType xmlns:d4p1="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
        <d4p1:Code>sample string 2</d4p1:Code>
        <d4p1:Description>sample string 3</d4p1:Description>
        <d4p1:Id>1</d4p1:Id>
        <d4p1:IsActive>true</d4p1:IsActive>
        <d4p1:Source>sample string 5</d4p1:Source>
      </ContractType>
      <Description>sample string 3</Description>
      <EndDate>2026-05-26T23:18:44.9581264+02:00</EndDate>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <NormTime>1</NormTime>
      <Price>1</Price>
      <StartDate>2026-05-26T23:18:44.9581264+02:00</StartDate>
    </Arrangement>
    <Arrangement>
      <ContractType xmlns:d4p1="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
        <d4p1:Code>sample string 2</d4p1:Code>
        <d4p1:Description>sample string 3</d4p1:Description>
        <d4p1:Id>1</d4p1:Id>
        <d4p1:IsActive>true</d4p1:IsActive>
        <d4p1:Source>sample string 5</d4p1:Source>
      </ContractType>
      <Description>sample string 3</Description>
      <EndDate>2026-05-26T23:18:44.9581264+02:00</EndDate>
      <Id>1</Id>
      <Name>sample string 2</Name>
      <NormTime>1</NormTime>
      <Price>1</Price>
      <StartDate>2026-05-26T23:18:44.9581264+02:00</StartDate>
    </Arrangement>
  </Arrangements>
  <ClientplanId>1</ClientplanId>
</ClientplanArrangement>