List Roles#
ロールを一覧表示します。
APIエンドポイント#
| リージョン | APIエンドポイント |
|---|---|
| 西日本リージョン3の場合 | https://identity.jp-west-3.cloud.global.fujitsu.com |
| 東日本リージョン3の場合 | https://identity.jp-east-3.cloud.global.fujitsu.com |
HTTPメソッドとURI#
GET
/v3/roles/
HTTPステータスコード#
正常時:200
エラー時:400, 401, 403, 404, 409, 500, 501, 503
リクエストパラメータの説明#
| 名前 | In | Type | デフォルト値 /必須指定 |
Description |
|---|---|---|---|---|
| name | query | string | 任意 | ロール名 |
レスポンスボディ(正常系)の説明#
| 名前 | Type | Description |
|---|---|---|
| roles | array | ロールオブジェクトのリスト |
| id | string | ロールID |
| links | object | ロールへのリンクURL |
| name | string | ロール名 |
| links | object | APIへのリンクURL |
レスポンス例#
{ "roles": [ { "id": "--member-role-id--", "links": { "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/roles/--member-role-id--" }, "name": "_member_" }, ], "links": { "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/roles", "previous": null, "next": null } }