Skip to content

RevokeGroupPermissionBody

Request body for revoking a permission from a group on a resource

Example Usage

typescript
import { RevokeGroupPermissionBody } from "@meetkai/mka1/models/components";

let value: RevokeGroupPermissionBody = {
  group: "<value>",
  permission: "reader",
  resource: "<value>",
};

Fields

FieldTypeRequiredDescription
groupstring✔️Unique identifier for a group. Must contain only alphanumeric characters, hyphens, and underscores.
permissioncomponents.Permission✔️Permission level for the resource. Options: "reader" (view only), "writer" (view and modify), "owner" (full control)
resourcestring✔️Unique identifier for a resource. Must contain only alphanumeric characters, hyphens, and underscores.