GET api/Village/{village}/Wellness/All?Id={Id}&Take={Take}&Skip={Skip}&Cutoff={Cutoff}
Get all wellness checks
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Id |
If provided, the ID of the wellness entry to get |
globally unique identifier |
None. |
Take |
If provided, the maximum number of records to return. |
integer |
None. |
Skip |
If provided, the number of records to skip |
integer |
None. |
Cutoff |
If provided, the cutoff date for records to be returned (records before the cutoff will not be returned) |
date |
None. |
village | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of WellnessHistoryModelName | Description | Type | Additional information |
---|---|---|---|
WellnessId |
The unique ID of this wellness record |
globally unique identifier |
None. |
VillageId |
The Village's ID |
globally unique identifier |
None. |
PerformedById |
The ID of the user who performed this update |
globally unique identifier |
None. |
PerformedBy |
The name of the user who performed this update |
string |
None. |
Wellness |
The care recipient's Wellness indicator as of this update |
Wellness |
None. |
Comment |
A user-supplied comment, if any |
string |
None. |
DateTime |
The date/time this wellness update was created |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "WellnessId": "1039fa65-0684-4098-a417-859171e9833a", "VillageId": "1b37b316-5f3e-4a64-8b47-15c232e8b134", "PerformedById": "a1fe43fe-d4e0-4c1f-848b-e4976e35ed54", "PerformedBy": "sample string 4", "Wellness": 0, "Comment": "sample string 5", "DateTime": "2025-06-03T05:55:08.429+00:00" }, { "WellnessId": "1039fa65-0684-4098-a417-859171e9833a", "VillageId": "1b37b316-5f3e-4a64-8b47-15c232e8b134", "PerformedById": "a1fe43fe-d4e0-4c1f-848b-e4976e35ed54", "PerformedBy": "sample string 4", "Wellness": 0, "Comment": "sample string 5", "DateTime": "2025-06-03T05:55:08.429+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfWellnessHistoryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaringVillage.Shared.Implementation.Models"> <WellnessHistoryModel> <Comment>sample string 5</Comment> <DateTime>2025-06-03T05:55:08.4294936+00:00</DateTime> <PerformedBy>sample string 4</PerformedBy> <PerformedById>a1fe43fe-d4e0-4c1f-848b-e4976e35ed54</PerformedById> <VillageId>1b37b316-5f3e-4a64-8b47-15c232e8b134</VillageId> <Wellness>Good</Wellness> <WellnessId>1039fa65-0684-4098-a417-859171e9833a</WellnessId> </WellnessHistoryModel> <WellnessHistoryModel> <Comment>sample string 5</Comment> <DateTime>2025-06-03T05:55:08.4294936+00:00</DateTime> <PerformedBy>sample string 4</PerformedBy> <PerformedById>a1fe43fe-d4e0-4c1f-848b-e4976e35ed54</PerformedById> <VillageId>1b37b316-5f3e-4a64-8b47-15c232e8b134</VillageId> <Wellness>Good</Wellness> <WellnessId>1039fa65-0684-4098-a417-859171e9833a</WellnessId> </WellnessHistoryModel> </ArrayOfWellnessHistoryModel>