jira.js
    Preparing search index...

    Function getGroup

    • Returns the details of a group.

      Parameters

      • client: Client
      • parameters: { directoryId: string; groupId: string; orgId: string }
        • directoryId: string

          Unique ID associated with a directory. The - character can be used to increase the operation scope to all directories the requestor has permission to manage.

        • groupId: string

          Unique ID associated with a group.

        • orgId: string

          Your organization has a unique ID. Find this ID in your Atlassian Administration URL or when you create your API key.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              data?: {
                  counts?: {
                      resources?: number;
                      users?: number;
                      [key: string]: unknown;
                  };
                  description?: string;
                  directoryId?: string;
                  externalSynced?: boolean;
                  id?: string;
                  links?: { self?: string
                  | null; [key: string]: unknown };
                  managedBy?: string;
                  managementAccess?: {
                      deletable?: boolean;
                      modifiable?: boolean;
                      readable?: boolean;
                      [key: string]: unknown;
                  };
                  name?: string;
                  [key: string]: unknown;
              };
              [key: string]: unknown;
          },
      >