GET PlanCare2Api/ArrangementProductActs/Acts?arrangementId={arrangementId}

Fetches the care arrangement by identifier asynchronous.

Request Information

URI Parameters

Name Description Type Additional information
arrangementId

The arrangement identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

CareArrangementsResult
Name Description Type Additional information
ArrangementId

The arrangement identifier.

integer

-

ArrangementName

The name of the arrangement.

string

-

StartDate

The start date.

date

-

EndDate

The end date.

date

Nullable

Products

The products.

Collection of CareArrangementProduct

-

Response Formats

application/json, text/json

Sample:
{
  "ArrangementId": 1,
  "ArrangementName": "sample string 2",
  "StartDate": "2026-05-26T22:10:02.8118979+02:00",
  "EndDate": "2026-05-26T22:10:02.8118979+02:00",
  "Products": [
    {
      "$id": "2",
      "ProductId": 1,
      "ProductName": "sample string 2",
      "Acts": [
        {
          "$id": "3",
          "ArrangementProductActId": 1,
          "Id": 2,
          "Name": "sample string 3",
          "CountPerWeek": 1,
          "TargetTime": 1,
          "Price": 1.0,
          "Status": 0
        },
        {
          "$ref": "3"
        }
      ]
    },
    {
      "$ref": "2"
    }
  ]
}

application/xml, text/xml

Sample:
<CareArrangementsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Clientplan">
  <ArrangementId>1</ArrangementId>
  <ArrangementName>sample string 2</ArrangementName>
  <EndDate>2026-05-26T22:10:02.8118979+02:00</EndDate>
  <Products>
    <CareArrangementProduct>
      <Acts>
        <ClientplanArrangementAct>
          <ArrangementProductActId>1</ArrangementProductActId>
          <CountPerWeek>1</CountPerWeek>
          <Id>2</Id>
          <Name>sample string 3</Name>
          <Price>1</Price>
          <Status>Concept</Status>
          <TargetTime>1</TargetTime>
        </ClientplanArrangementAct>
        <ClientplanArrangementAct>
          <ArrangementProductActId>1</ArrangementProductActId>
          <CountPerWeek>1</CountPerWeek>
          <Id>2</Id>
          <Name>sample string 3</Name>
          <Price>1</Price>
          <Status>Concept</Status>
          <TargetTime>1</TargetTime>
        </ClientplanArrangementAct>
      </Acts>
      <ProductId>1</ProductId>
      <ProductName>sample string 2</ProductName>
    </CareArrangementProduct>
    <CareArrangementProduct>
      <Acts>
        <ClientplanArrangementAct>
          <ArrangementProductActId>1</ArrangementProductActId>
          <CountPerWeek>1</CountPerWeek>
          <Id>2</Id>
          <Name>sample string 3</Name>
          <Price>1</Price>
          <Status>Concept</Status>
          <TargetTime>1</TargetTime>
        </ClientplanArrangementAct>
        <ClientplanArrangementAct>
          <ArrangementProductActId>1</ArrangementProductActId>
          <CountPerWeek>1</CountPerWeek>
          <Id>2</Id>
          <Name>sample string 3</Name>
          <Price>1</Price>
          <Status>Concept</Status>
          <TargetTime>1</TargetTime>
        </ClientplanArrangementAct>
      </Acts>
      <ProductId>1</ProductId>
      <ProductName>sample string 2</ProductName>
    </CareArrangementProduct>
  </Products>
  <StartDate>2026-05-26T22:10:02.8118979+02:00</StartDate>
</CareArrangementsResult>