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

Fetches the care arrangement by identifier asynchronous.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
arrangementId

The arrangement identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

CareArrangementsResult
NameDescriptionTypeAdditional information
ArrangementId

The arrangement identifier.

integer

None

ArrangementName

The name of the arrangement.

string

None

StartDate

The start date.

date

None

EndDate

The end date.

date

None

Products

The products.

Collection of CareArrangementProduct

None

Response Formats

application/json, text/json

Sample:
{
  "ArrangementId": 1,
  "ArrangementName": "sample string 2",
  "StartDate": "2026-05-26T22:10:03.7228277+02:00",
  "EndDate": "2026-05-26T22:10:03.7228277+02:00",
  "Products": [
    {
      "$id": "2",
      "ProductId": 1,
      "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:03.7228277+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>
    </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>
    </CareArrangementProduct>
  </Products>
  <StartDate>2026-05-26T22:10:03.7228277+02:00</StartDate>
</CareArrangementsResult>