List Network Connectors

Lists network connectors.

Request

URI

GET <network service endpoint>/v2.0/network_connectors

Example:

GET http://192.168.122.1:9696/v2.0/network_connectors

Headers

  • X-Auth-Token: token delivered by identity service

Response

Status Code

  • 200 (OK)

Headers

  • Content-Type: application/json

Body


{
	"network_connectors" : [
		{
			"id" : "07993b1c-79e1-4cf6-a663-dc42b9ce37d4",
			"name" : "connector1",
			"network_connector_pool_id" : "78380271-954a-4c1a-a76d-43033c7fc9bf",
			"network_connector_endpoints" : [
				"0e521ed5-62d0-44c9-9c04-2e880b5add21"
			],
			"tenant_id" : "29320d5e-dd29-425c-b386-3cbb2754ad03"
		},
		{
		"id" : "ddecde23-fbf7-460d-b895-6f190b1890ec",
		"name" : "connector1",
		"network_connector_pool_id" : "78380271-954a-4c1a-a76d-43033c7fc9bf",
		"network_connector_endpoints" : [
			"d001c289-e7ba-4db9-90d8-ee70785852b4"
		],
		"tenant_id" : "d827860a-f3dc-4c65-9e22-78142582a12c"
		}
	]
}
     

Elements

  • id:

    ID for this network connector

    • Type: String
  • name:

    name for network connector

    • Type: String
  • network_connector_pool_id:

    A network connector pool id for this network connector.

    • Type: String
  • network_connector_endpoints:

    ID of network connector endpoints belonging to this network connector. Immediate after creation, this value must be empty array.

    • Type: Array of String
  • tenant_id:

    tenant's ID to which this network connector belongs

    • Type: String

Errors

  • 401: Token is not specified or not authorized.
  • 403: Token is not permitted to operate.