Getting Groups

These endpoints allow you to retrieve information about groups in your organization. You can either fetch a list of all available groups or get detailed information about a specific group using its ID. Groups help you organize and manage collections of users within your organization. Authentication via API token is required for all group-related requests.

Getting all Groups
GET /api/v1/groups/

Getting a specific Group ( Possible values: The numeric ID for the Group. This can be retrieved for each group in the response for all active Groups. )
GET /api/v1/groups/[ GROUP ID ]/

Getting all Groups

curl 'https://acmeinc.datareportive.com/api/v1/groups/' -X GET -H "Authorization: Token [ TOKEN ]"

Getting a specific Group

curl 'https://acmeinc.datareportive.com/api/v1/groups/[ GROUP ID ]/' -X GET -H "Authorization: Token [ TOKEN ]"