Get available project scopes#

指定するX-Auth-Tokenの利用可能なプロジェクトスコープが返却されます。

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/auth/projects

HTTPステータスコード#

正常時:200

エラー時:400, 401, 403, 404, 405, 409, 413, 415, 503

リクエストパラメータの説明#

名前 In Type デフォルト値
/必須指定
Description
X-Auth-Token header string 必須 管理者ユーザーが利用する有効な認証トークン

レスポンスボディ(正常系)の説明#

名前 Type Description
domain_id string プロジェクトのドメインのID
enabled boolean 「true」の場合は、プロジェクトが有効です。「false」の場合は、無効です。
id string プロジェクトのID
links object プロジェクトリソースへのリンクURL
name string プロジェクトの名前

レスポンス例#

{
    "projects": [
        {
            "domain_id": "1789d1",
            "enabled": true,
            "id": "263fd9",
            "links": {
                "self": "https://example.com/identity/v3/projects/263fd9"
            },
            "name": "Test Group"
        },
        {
            "domain_id": "1789d1",
            "enabled": true,
            "id": "50ef01",
            "links": {
                "self": "https://example.com/identity/v3/projects/50ef01"
            },
            "name": "Build Group"
        }
    ],
    "links": {
        "self": "https://example.com/identity/v3/auth/projects",
        "previous": null,
        "next": null
    }
}