Passer au contenu principal
GET
/
v2
/
enterprise
/
organizations
/
{org_id}
/
groups
Endpoint des groupes d’organisation Enterprise
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/organizations/{org_id}/groups \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "items": [
    {
      "group_name": "<string>",
      "org_id": "<string>",
      "role": "<string>"
    }
  ],
  "limit": 123,
  "skip": 123,
  "total": 123,
  "next_cursor": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.devin.ai/llms.txt

Use this file to discover all available pages before exploring further.

Nécessite une API key personnelle d’administrateur Enterprise. Renvoie une liste paginée de groupes Enterprise au sein d’une organisation spécifique.

Autorisations

Authorization
string
header
requis

API Key personnelle (apk_user_*) réservée uniquement aux administrateurs Enterprise

Paramètres de chemin

org_id
string
requis

Paramètres de requête

skip
integer
défaut:0
Plage requise: x >= 0
limit
integer
défaut:100
Plage requise: 1 <= x <= 200

Réponse

Réponse en cas de succès

has_more
boolean
requis
items
OrganizationGroupResponse · object[]
requis
limit
integer
requis
skip
integer
requis
total
integer
requis
next_cursor
integer | null