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