Skip to content

GrantGroupPermissionRequestBody

Request body for granting a permission to a group on a resource

Example Usage

typescript
import { GrantGroupPermissionRequestBody } from "@meetkai/mka1/models/operations";

let value: GrantGroupPermissionRequestBody = {
  group: "<value>",
  permission: "writer",
  resource: "<value>",
};

Fields

FieldTypeRequiredDescription
groupstring✔️Unique identifier for a group. Must contain only alphanumeric characters, hyphens, and underscores.
permissionoperations.GrantGroupPermissionPermission✔️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.