v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Control Plane Groups

List Control Plane Group Memberships

Returns an array of control planes that are a member of this control plane group.

get/v2/control-planes/{controlPlaneId}/group-memberships

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[after]string
Example:ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ

Request the next page of data, starting with the item after this parameter.

Response

A paginated list response for a collection of control plane group memberships.

Example response

{
  "meta": {
    "page": {
      "size": 10,
      "total": 974
    }
  },
  "data": [
    {
      "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"
    }
  ]
}