メインコンテンツへスキップ
GET
https://{tenantDomain}/api/v2
/
groups
/
{id}
/
roles
グループのロールを取得
curl --request GET \
  --url https://{tenantDomain}/api/v2/groups/{id}/roles \
  --header 'Authorization: Bearer <token>'
{
  "roles": [
    {
      "description": "<string>",
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "next": "<string>"
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string
必須

グループの一意の識別子(サービスによって生成)。

Required string length: 18 - 26

クエリパラメータ

from
string

選択の開始位置となる省略可能な Id。

take
integer

1 ページあたりの結果数です。デフォルトは 50 です。

必須範囲: x >= 1

レスポンス

グループのロールを正常に取得しました。

roles
object[]
必須
next
string

結果の次ページで "from" クエリパラメーターとして使用するカーソルです。