Groups provide a mechanism to group data, for example locations might be grouped by region, care enquiries by the source referrer.
A unique Id for the group.
Flag indicating if the group is currently archived.
The date/time the group was created.
A description of the groups.
The group's designated group type. Groups are organized by type with different types of group being used as options for different fields within CareHQ. The following group types are supported; absence_reason, action_tag, comms_tag, competitor, competitor_type, complaint_subject_matter, day_care_session_type, enquiry_close_reason, leave_reason, location_contact_tag, location_group, sales_channel, referrer_type, referrer, room_feature, ledger, ledger_expense_category.
The date/time the group was modified.
The group's name.
A nominal code assigned to an expense category.
The Id of the group's parent group. Some groups are further grouped under a parent group, if so then a parent group Id will be present.
A flag indicating if the group is protected. Protected groups cannot be updated or deleted. They can be renamed on request by a member of the CareHQ team.
{
"_id": "6724fbc74f73a2cebf6377ea",
"archived": false,
"created": "2024-11-01 16:03:19",
"description": null,
"group_type": "location_group",
"modified": "2024-11-01 16:03:19",
"name": "North",
"nominal_code": null,
"parent_group": null,
"protected": null
}
Return a list of groups setup for your account on CareHQ.
['_id']
A list of attributes to include for fetched objects.
no
A filter that allows groups that are currently archived to be included or excluded.
A filter that accepts a list of group types and filters groups by their type.
A filter that accepts a list of Ids and filters the items returned to those with an Id in the list.
A filter that accepts a date/time and filters the items returned to those modified after the date/time.
A filter that accepts a date/time and filters the items returned to those modified before the date/time.
A case insensitive keyword filter applied to the following fields; name.
1
The page number to fetch.
10
The number of items to return per page.
_id
A list of fields the returned items can be sorted by. Fields prefixed with minus (-) sign are sorted in descending order.
Returns a page of groups.
var groups = apiClient.Request(
HttpMethod.Get,
"groups",
new MultiValueDict()
.Add("attributes", "name")
.Add("filters-group_types", locationGroup)
);
<?php
$groups = $api_client->request(
'GET',
'groups',
[
'attributes'=>['name'],
'filters-group_types'=>['location_group']
]
);
groups = api_client(
'GET',
'groups',
params={
'attributes': ['name'],
'filters-group_types': ['location_group']
}
)
groups = api_client.request(
'GET',
'groups',
params: {
'attributes' => ['name'],
'filters-group_types' => ['location_group']
}
)
{
"item_count": 112,
"items": [
{
"_id": "6724fbc74f73a2cebf63770e",
"name": "Appointment"
},
{
"_id": "6724fbc74f73a2cebf637710",
"name": "Day trip"
},
{
"_id": "6724fbc74f73a2cebf637712",
"name": "Hospital admission"
},
{
"_id": "6724fbc74f73a2cebf637714",
"name": "Resident sign out"
},
{
"_id": "6724fbc74f73a2cebf637716",
"name": "Finance"
},
{
"_id": "6724fbc74f73a2cebf637718",
"name": "Care home"
},
{
"_id": "6724fbc74f73a2cebf63771a",
"name": "Home care"
},
{
"_id": "6724fbc74f73a2cebf63771c",
"name": "Hospice"
},
{
"_id": "6724fbc74f73a2cebf63771e",
"name": "Quality of care"
},
{
"_id": "6724fbc74f73a2cebf637720",
"name": "Staff behaviour"
}
],
"page": 1,
"page_count": 12,
"per_page": 10
}
var group = apiClient.Request(HttpMethod.Get, $"groups/{groupId}");
<?php
$group = $api_client->request('GET', 'groups/' . $group_id);
group = api_client('GET', f'groups/{group_id}')
group = api_client.request('GET', "groups/#{group_id}")
{
"_id": "6724fbc74f73a2cebf6377ea",
"archived": false,
"created": "2024-11-01 16:03:19",
"description": null,
"group_type": "location_group",
"modified": "2024-11-01 16:03:19",
"name": "North",
"nominal_code": null,
"parent_group": null,
"protected": null
}