Retrieves the user group list.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Query Parameters
page
nullable number OptionalIndicates which specific page of results you want to retrieve. The default value is 1.
page_size
nullable number OptionalIndicates how many items should be included in each page of results. The default value is 25.
sort_by
nullable string OptionalComma separated sortable fields (e.g., name, +name, -name).
q
nullable string OptionalKeyword to filter with group name.
Response
200 OK.
Parameters
GET /users/groups
curl -X GET 'https://staging.api.pulsifi.me/partner/v1.0/users/groups?page={page}&page_size={limit}&sort_by={string}&q={string}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"data": {
"total_count": 1,
"result": [
{
"id": "<Pulsifi Group ID>",
"name": "<Group Name>",
"description": "<Group Description>",
"created_at": "2025-05-05T10:45:18.935Z",
"updated_at": "2025-05-05T10:45:18.935Z",
"member_count": 99,
}
]
},
"meta": null
}