Query parameters
-
Filter by a comma separated list of UUIDs.
-
Name to filter by
-
Filter by a business unit UUID.
-
Comma separated list of relationships to include. Valid relationships are [business_unit, participants].
-
Field to sort by. Valid fields are [created_at, name, updated_at]. Negative sign to denote DESC. Defaults to 'name'.
-
Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/group
curl \
--request GET 'https://api.plannrcrm.com/api/v1/group' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"uuid": "b972462b-8404-4c75-9042-18c9910ae6c8",
"name": "finance",
"slug": "finance",
"participants_count": "3",
"participants": {
"uuid": {
"example": "daf2a042-541c-42c6-93dd-59e77b53c9c7",
"description": "UUID of the account"
},
"role": {
"example": "client",
"description": "Role of the account"
},
"first_name": {
"example": "Gareth",
"description": "First name of the account"
},
"last_name": {
"example": "Thompson",
"description": "Last name of the account"
},
"name": {
"example": "Gareth Thompson",
"description": "Name of the account"
},
"email": {
"example": "gareth@codepotato.co.uk",
"description": "Email of the account"
}
},
"created_at": "2026-04-29T12:52:59+01:00",
"updated_at": "2026-04-29T12:52:59+01:00"
}
]
}