Interface CreateGroup

interface CreateGroup {
    color?: string;
    color_key?:
        | "blue"
        | "purple"
        | "midnight-blue"
        | "orange"
        | "yellow-green"
        | "brass"
        | "gray"
        | "fuchsia"
        | "yellow"
        | "pink"
        | "sky-blue"
        | "green"
        | "red"
        | "black"
        | "slate"
        | "turquoise";
    description?: string;
    display_icon_id?: string;
    member_ids?: string[];
    mention_name: string;
    name: string;
    workflow_ids?: number[];
}

Properties

color?: string

The color you wish to use for the Group in the system.

css-color

1

^#[a-fA-F0-9]{6}$

color_key?:
    | "blue"
    | "purple"
    | "midnight-blue"
    | "orange"
    | "yellow-green"
    | "brass"
    | "gray"
    | "fuchsia"
    | "yellow"
    | "pink"
    | "sky-blue"
    | "green"
    | "red"
    | "black"
    | "slate"
    | "turquoise"

The color key you wish to use for the Group in the system.

description?: string

The description of the Group.

display_icon_id?: string

The Icon id for the avatar of this Group.

uuid

member_ids?: string[]

The Member ids to add to this Group.

true

mention_name: string

The mention name of this Group.

1

63

name: string

The name of this Group.

1

63

workflow_ids?: number[]

The Workflow ids to add to the Group.