Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
TypeScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.k0rdent.ai/v1/regions/{region}/projects/{project}/infrastructure/servers/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "error": { "code": 123, "message": "<string>", "details": [ {} ] } }
Remove server from fleet inventory when retired or failed.
Bearer token authentication using OAuth2/OIDC tokens
Region identifier
Project identifier
Unique server identifier (UUID)
Server decommissioned successfully
Was this page helpful?