GET PlanCare2Api/ArrangementProductActs?clientId={clientId}&referenceDate={referenceDate}

Fetches all ArrangementProductActs related to the provided client that are valid on the specified reference date

Request Information

URI Parameters

Name Description Type Additional information
clientId

Identifier of client

integer

Required

referenceDate

The date which is used to filter ArrangementProductActs

date

Required

Body Parameters

None.

Response Information

Resource Description

ArrangementProductAct

Collection of ArrangementProductAct
Name Description Type Additional information
Id

The identifier of the ArrangementProductAct

integer

-

Name

The name of the ArrangementProductAct

string

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfArrangementProductAct xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
  <ArrangementProductAct>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </ArrangementProductAct>
  <ArrangementProductAct>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </ArrangementProductAct>
</ArrayOfArrangementProductAct>