GET PlanCare2Api/ClientAttentions?clientId={clientId}
Retrieve all attentions for the selected client.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
The client for whom to fetch the attentions. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of attentions.
Collection of ClientAttention| Name | Description | Type | Additional information |
|---|---|---|---|
| Description |
The description of the attention |
string |
None. |
| StartDate |
The start date |
date |
None. |
| EndDate |
The end date |
date |
None. |
| CreatedByUsername |
The name of the relation that created the attention |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"$id": "1",
"Description": "sample string 1",
"StartDate": "2026-05-26T23:19:07.5084756+02:00",
"EndDate": "2026-05-26T23:19:07.5084756+02:00",
"CreatedByUsername": "sample string 3"
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfClientAttention xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface">
<ClientAttention>
<CreatedByUsername>sample string 3</CreatedByUsername>
<Description>sample string 1</Description>
<EndDate>2026-05-26T23:19:07.5084756+02:00</EndDate>
<StartDate>2026-05-26T23:19:07.5084756+02:00</StartDate>
</ClientAttention>
<ClientAttention>
<CreatedByUsername>sample string 3</CreatedByUsername>
<Description>sample string 1</Description>
<EndDate>2026-05-26T23:19:07.5084756+02:00</EndDate>
<StartDate>2026-05-26T23:19:07.5084756+02:00</StartDate>
</ClientAttention>
</ArrayOfClientAttention>