curl --request POST \
--url https://api.streamkap.com/cluster/scale/{operation_id}/cancel \
--header 'Authorization: Bearer <token>'{
"operation_id": "<string>",
"status": "pending",
"message": "<string>"
}Request cancellation. Controller checks between steps and stops if cancelled.
Only works before step 4 (point of no return — pods already deleted).
curl --request POST \
--url https://api.streamkap.com/cluster/scale/{operation_id}/cancel \
--header 'Authorization: Bearer <token>'{
"operation_id": "<string>",
"status": "pending",
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?