GET PlanCare2Api/Interventions?clientId={clientId}
Retrieves a list of interventions that belong to clientplans of the client that have the status 'In progress'.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
The client for whom to fetch the interventions. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of interventions that belong to clientplans of the client that have the status 'In progress'.
Collection of OmahaIntervention| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The identifier of an intervention. |
globally unique identifier |
None |
| ActionType |
The ActionType of an intervention. |
string |
None |
| ActionArea |
The ActionArea of an intervention. |
string |
None |
| Area |
The Area of an intervention. |
string |
None |
| AreaId |
The internal id of the Area of an intervention. |
globally unique identifier |
None |
| Domain |
The Domain of an intervention. |
string |
None |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Id": "09a1990f-e5e2-4522-87bb-b3d4e2edfaeb",
"ActionType": "sample string 2",
"ActionArea": "sample string 3",
"Area": "sample string 4",
"AreaId": "0a9c1abe-c930-455f-a520-ec7910006723",
"Domain": "sample string 6"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfOmahaIntervention xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Clientplan">
<OmahaIntervention>
<ActionArea>sample string 3</ActionArea>
<ActionType>sample string 2</ActionType>
<Area>sample string 4</Area>
<AreaId>0a9c1abe-c930-455f-a520-ec7910006723</AreaId>
<Domain>sample string 6</Domain>
<Id>09a1990f-e5e2-4522-87bb-b3d4e2edfaeb</Id>
</OmahaIntervention>
<OmahaIntervention>
<ActionArea>sample string 3</ActionArea>
<ActionType>sample string 2</ActionType>
<Area>sample string 4</Area>
<AreaId>0a9c1abe-c930-455f-a520-ec7910006723</AreaId>
<Domain>sample string 6</Domain>
<Id>09a1990f-e5e2-4522-87bb-b3d4e2edfaeb</Id>
</OmahaIntervention>
</ArrayOfOmahaIntervention>