Vai al contenuto principale
GET
/
v2
/
enterprise
/
organizations
/
{org_id}
/
members
Enterprise Organization Members Endpoint
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/organizations/{org_id}/members \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "items": [
    {
      "email": "<string>",
      "name": "<string>",
      "org_id": "<string>",
      "org_name": "<string>",
      "org_role": "<string>",
      "user_id": "<string>",
      "enterprise_role": "<string>"
    }
  ],
  "limit": 123,
  "skip": 123,
  "total": 123,
  "next_cursor": 123
}
Richiede l’API key personale di un amministratore Enterprise. Restituisce un elenco paginato di utenti che sono membri di una specifica organizzazione all’interno del tuo account Enterprise.

Autorizzazioni

Authorization
string
header
obbligatorio

Personal API Key (apk_user_*) for Enterprise Admins only

Parametri del percorso

org_id
string
obbligatorio

Parametri della query

skip
integer
predefinito:0
Intervallo richiesto: x >= 0
limit
integer
predefinito:100
Intervallo richiesto: 1 <= x <= 200

Risposta

Successful Response

has_more
boolean
obbligatorio
items
UserOrgResponse · object[]
obbligatorio
limit
integer
obbligatorio
skip
integer
obbligatorio
total
integer
obbligatorio
next_cursor
integer | null