groups

Get Post

POST
Gets the requested group.

Request

This endpoint expects an object.
id
stringRequired
The ID of the group to get.

Response

This endpoint returns an object
group
object
POST
1curl -X POST https://api.devrev.ai/groups.get \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "id": "id"
6}'
200
Successful
1{
2 "group": {
3 "id": "id",
4 "is_default": true,
5 "created_date": "2023-01-01T12:00:00Z",
6 "description": "description",
7 "display_id": "display_id",
8 "member_type": "dev_user",
9 "modified_date": "2023-01-01T12:00:00Z",
10 "name": "name"
11 }
12}