Reject a pending cluster registration
DELETE
/license/pending-clusters/{cluster_id}
const url = 'https://shoehorn.example.com/api/v1/license/pending-clusters/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://shoehorn.example.com/api/v1/license/pending-clusters/exampleRemoves the pending row without bumping purchased_clusters. The agent will re-park on its next register attempt unless its deployment is changed.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” cluster_id
required
string
Responses
Section titled “ Responses ”Rejected
No pending registration for that cluster_id