Skip to main content
Platform Operations/Platform Federation
POSTPlatformSince 1.0SynchronousAuth Required

CreateClusterGroup

Create a new logical cluster group for multi-cluster federation management.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

Body Fields

  • nameStringRequired

    Name for the new cluster group

    Example: production-clusters

  • descriptionStringRequired

    Description of the cluster group purpose

    Example: All production environment clusters

  • clusterIdsListRequired

    List of cluster UUIDs to include in this group

    Example: item1,item2

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the cluster group

    Example: cg-001-xyz

  • nameString

    Human-readable name of the cluster group

    Example: production-clusters

  • descriptionString

    Description of the cluster group purpose

    Example: All production environment clusters

  • clusterIdsList

    List of cluster UUIDs that belong to this group

    Example: item1,item2

  • createdAtString

    Created at

    Example: 2026-01-15T08:00:00Z

Endpoint

POST/api/v1/federation/cluster-groups

/api/v1/federation/cluster-groups

Operation ID

CreateClusterGroup

Permalink

Request Example

curl -X POST '{host}/api/v1/federation/cluster-groups' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"key": "value"}'

Response Example

200
{
  "id": "cg-001-xyz",
  "name": "production-clusters",
  "description": "All production environment clusters",
  "clusterIds": [],
  "createdAt": "example"
}

Change History

This API has no change history records yet.

View all change history