Get available domain 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/domains

HTTPステータスコード#

正常時:200

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

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

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

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

名前 Type Description
description string ドメインの説明
enabled string 「true」の場合は、ドメインが有効です。「false」の場合は、無効です。
id string ドメインのID
links object ドメインリソースへのリンクURL
name string ドメインの名前

レスポンス例#

{
    "domains": [
        {
            "description": "my domain description",
            "enabled": true,
            "id": "1789d1",
            "links": {
                "self": "https://example.com/identity/v3/domains/1789d1"
            },
            "name": "my domain"
        },
        {
            "description": "description of my other domain",
            "enabled": true,
            "id": "43e8da",
            "links": {
                "self": "https://example.com/identity/v3/domains/43e8da"
            },
            "name": "another domain"
        }
    ],
    "links": {
        "self": "https://example.com/identity/v3/auth/domains",
        "previous": null,
        "next": null
    }
}