Skip to main content

Group Management

The Groups module allows organizing the user base into higher logical categories. Unlike Tags (simple labels), Groups are used for Mass Operation Management, facilitating the control of complex fleets and the extraction of consolidated reports.


Group Operations

FeatureMethodPathDescription
List GroupsGET/groupsLists the groupings with status filters.
Create GroupPOST/groupCreates a new operational grouping.
Example Response (List)
{
"data": [
{
"id": 10,
"name": "Logistics Drivers",
"status": "active",
"members": 42
}
]
}

Linking and Relationships

A group can dynamically inherit members through Tags or direct links to Organizations.

POST /add-group

Field (Body)RequiredDescription
group_idYesTarget group ID.
organization_idOptionalLinks all members of a B2B fleet.
tag_idOptionalLinks users who have a specific tag.
Request Body (Link Organization to Group)
{
"group_id": 10,
"organization_id": 5
}