jira.js
    Preparing search index...

    Function getProjectNotificationScheme

    • Gets a notification scheme associated with the project. Follow the documentation of /notificationscheme/{id} resource for all details about returned value.

      Parameters

      • client: Client
      • parameters: { expand?: string; projectKeyOrId: string }
        • Optionalexpand?: string

          Optional information to be expanded in the response: group, user, projectRole or field.

        • projectKeyOrId: string

          Key or id of the project

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              description?: string;
              expand?: string;
              id?: number;
              name?: string;
              notificationSchemeEvents?: {
                  event?: {
                      description?: string;
                      id?: number;
                      name?: string;
                      [key: string]: unknown;
                  };
                  notifications?: {
                      id?: number;
                      notificationType?: string;
                      parameter?: string;
                      [key: string]: unknown;
                  }[];
                  [key: string]: unknown;
              }[];
              self?: string;
              [key: string]: unknown;
          },
      >