Retrieves the user group details.
Headers
- Accept :
application/json
- Content-Type :
application/json
- Authorization :
Bearer {access_token}
Path Parameters
group_id
nullable string RequiredThe group id for the group.
Response
200 OK.
Parameters
GET /users/groups/:group_id
curl -X GET 'https://staging.api.pulsifi.me/partner/v1.0/users/groups/{group_id}' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
Response
{
"data": {
"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"
},
"meta": null
}