TypeScript
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.k0rdent.ai/v1/regions/global/iam/groups/{groupId}/members/{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
Remove a user from the group. Returns 404 if the user is not a member.
Bearer token authentication using OAuth2/OIDC tokens
Group resource identifier.
Membership resource identifier.
Member removed from the group.
Was this page helpful?