List Projects#

プロジェクトを一覧表示します。

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

HTTPステータスコード#

正常時:200

エラー時:400, 401, 403, 404, 409, 500, 501, 503

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

名前 In Type デフォルト値
/必須指定
Description
domain_id query string 必須 ドメインID
name query string 任意 プロジェクト名
enabled query boolean 任意 プロジェクトの有効/無効設定

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

名前 Type Description
projects array プロジェクトオブジェクトのリスト
description string プロジェクトの説明
domain_id string ドメインID
enabled boolean プロジェクトの有効/無効設定
id string プロジェクトID
links object プロジェクトへのリンクURL
name string プロジェクト名
links object APIへのリンクURL

レスポンス例#

{
    "projects": [
        {
        "description": "my create project",
            "domain_id": "--domain-id--",
            "enabled": true,
            "id": "--project-id--",
            "links": {
                "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/projects/--project-id--"
            },
            "name": "projectname1"
        },
        {
        "description": "my create project",
            "domain_id": "--domain-id--",
            "enabled": true,
            "id": "--project-id--",
            "links": {
                "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/projects/--project-id--"
            },
            "name": "projectname2"
        }
    ],
    "links": {
        "self": "http://identity.jp-east-1.cloud.global.fujitsu.com/v3/projects",
        "previous": null,
        "next": null
    }
}