更新时间:2022-08-16 GMT+08:00

查询用户可以访问的租户列表

功能介绍

该接口用于查询用户可以用访问的租户列表。

URI

GET /v3/auth/domains

请求

  • Request Header参数说明

    参数

    是否必选

    类型

    说明

    X-Auth-Token

    String

    已认证的token。

  • 请求样例
    curl -i -k -H 'Accept:application/json' -H 'Content-Type:application/json;charset=utf8' -H "X-Auth-Token:$token" -X GET https://sample.domain.com/v3/auth/domains

响应

  • Response Body参数说明

    参数

    是否必选

    类型

    说明

    domains

    JSONArray

    租户列表。

    links

    JSONObject

    租户的资源链接。

  • domain格式说明

    参数

    是否必选

    类型

    说明

    enabled

    Boolean

    是否启用租户,true为启用,false为停用,默认为true。

    id

    String

    租户ID。

    name

    String

    租户名称。

    links

    JSONObject

    租户资源的链接。

    description

    String

    租户描述。

  • 响应样例
    {
        "domains": [{
            "description": "desc of domain",
            "enabled": true,
            "id": "37ef61",
            "links": {
                "self": "https://sample.domain.com/v3/domains/37ef61"
            },
            "name": "my domain"
        }],
        "links": {
            "self": "https://sample.domain.com/v3/auth/domains",
            "previous": null,
            "next": null
        }
    }

状态码

状态码

说明

200

请求成功。

400

请求错误。

401

认证失败。

403

鉴权失败。

405

不允许的方法。

413

请求体过大。

500

内部服务错误。

503

服务不可用。