Description

ネットワークの一覧を取得します。

Request URL

Network API

GET /v2.0/networks

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://networking.c3j1.conoha.io/v2.0/networks

Response

{
	"networks": [
		{
			"id": "ネットワークID",
			"name": "ネットワーク名",
			"tenant_id": "テナントID",
			"admin_state_up": true,
			"mtu": 1500,
			"status": "ACTIVE",
			"subnets": [
				"0b4a260e-af5a-4d65-89cd-d972f150746a",
				"f109c16d-34d8-40fd-8081-e643444fffb5"
			],
			"shared": true,
			"project_id": "テナントID",
			"router:external": false
		},
		{
			"id": "ネットワークID",
			"name": "ネットワーク名",
			"tenant_id": "テナントID",
			"admin_state_up": true,
			"mtu": 1500,
			"status": "ACTIVE",
			"subnets": [
				"bd05d195-e6b8-4ed1-84e4-bbaaa5e6c62e",
				"fd3b6a6b-dc7c-445b-a554-b52dfc5aaabf"
			],
			"shared": true,
			"project_id": "テナントID",
			"router:external": false
		}
	]
}

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