メインコンテンツへスキップ
GET
/
v2
/
enterprise
/
groups
Enterprise Groups Endpoint
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/groups \
  --header 'Authorization: Bearer <token>'
{
  "has_more": true,
  "items": [
    {
      "group_name": "<string>",
      "org_count": 123,
      "role_by_org_id": {}
    }
  ],
  "limit": 123,
  "skip": 123,
  "total": 123,
  "next_cursor": 123
}
Enterprise 管理者の個人用 APIキーが必要です。 Enterprise 内のすべての IdP(Identity Provider)グループを、関連付けられている組織およびロールとともに、ページネーションされたリストとして返します。

承認

Authorization
string
header
必須

Personal API Key (apk_user_*) for Enterprise Admins only

クエリパラメータ

skip
integer
デフォルト:0
必須範囲: x >= 0
limit
integer
デフォルト:100
必須範囲: 1 <= x <= 200

レスポンス

Successful Response

has_more
boolean
必須
items
EnterpriseGroupResponse · object[]
必須
limit
integer
必須
skip
integer
必須
total
integer
必須
next_cursor
integer | null