TypeScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.k0rdent.ai/v1/regions/global/organizations/{id}', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "error": { "code": 123, "message": "<string>", "details": [ {} ] } }
Visibility: internal · public ( OpenAPI Custom Extension: x-visibility )
internal
public
Delete/deactivate organization and reclaim resources.
Bearer token authentication using OAuth2/OIDC tokens
Unique organization identifier
Organization deleted successfully
Was this page helpful?