Skip to main content

List organization groups

Get all groups that belong to an organization. The results can be filtered by state which can be either be enabled or disabled.

Path Parameters
    orgId string required
Query Parameters
    state string

    The state of the group to filter by. It can be enabled or disabled.

Responses

A successful response.


Schema
    groups object[]
  • Array [
  • id string
    name string
    title string
    orgId string
    metadata object
    createdAt date-time

    The time the group was created.

    updatedAt date-time

    The time the group was last updated.

  • ]
GET /v1beta1/organizations/:orgId/groups

Authorization

name: Basic type: httpdescription: use Client ID as username and Client Secret as passwordin: headerscheme: basic

Request

Base URL
http://127.0.0.1:7400
Security Scheme
Username
Password
orgId — path required
state — query
curl / cURL
curl -L -X GET 'http://127.0.0.1:7400/v1beta1/organizations/:orgId/groups' \
-H 'Accept: application/json'