Delete a Kafka cluster

Allows you to deletes a Kafka cluster based on its ID.

Endpoint

DELETE /clusters/{clusterId}

The DELETE /clusters/{clusterId} endpoint initiates the deletion of a Kafka cluster identified by its unique UUID (clusterId). Upon successful deletion, the endpoint returns a 202 Accepted status code, indicating that the cluster deletion process has been initiated.

This action permanently removes the specified Kafka cluster and all associated resources. Use caution when invoking this endpoint as it cannot be undone.

Use this endpoint to manage and decommission Kafka clusters within your environment, ensuring efficient resource utilization and lifecycle management.

Parameters

Path ParametersRequiredTypeDescription

clusterId

Yes

string

The UUID of the Kafka cluster to delete. Example: /clusters/e69b22a5-8fee-56b1-b6fb-4a07e4205ead

Response

  • 202 Accepted: The request to delete the cluster was successful.

Last updated