Control Planes
Create Control Plane
Create a control plane in the Konnect Organization.
post/v2/control-planes
Request body
Example request
{
"name": "Test Control Plane",
"description": "A test control plane for exploration.",
"cluster_type": "CLUSTER_TYPE_CONTROL_PLANE",
"auth_type": "pinned_client_certs",
"proxy_urls": [
{
"host": "example.com",
"port": 443,
"protocol": "https"
}
],
"labels": {
"env": "test"
}
}Response
A response to creating a control plane.
Example response
{
"id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"name": "Test Control Plane",
"description": "A test control plane for exploration.",
"labels": {
"env": "test"
},
"config": {
"control_plane_endpoint": "https://acfe5f253f.cp.konghq.com",
"telemetry_endpoint": "https://acfe5f253f.tp0.konghq.com",
"cluster_type": "CLUSTER_TYPE_CONTROL_PLANE",
"auth_type": "pinned_client_certs",
"proxy_urls": [
{
"host": "example.com",
"port": 443,
"protocol": "https"
}
]
},
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}