Description

サブユーザーの一覧を取得します。

Request URL

Identity API

GET /v3/sub-users

Request Json

This operation does not accept a request body.

Request Parameters

Parameter Value Style Description
X-Auth-Token トークン header トークンの情報を指定します。
トークンの発行方法は、トークン発行 にてご確認ください。

Response Code

Success

200

Example

Request

curl -X GET 
-H "Accept: application/json" 
-H "X-Auth-Token: トークン" 
https://identity.c3j1.conoha.io/v3/sub-users

Response

{
  "users": [
    {
      "id": "サブユーザーID",
      "name": "サブユーザー名",
      "roles": [
        {
          "id": "ロールID",
          "name": "ロール名"
        }
      ]
    }
  ]
}

ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。