jira.js
    Preparing search index...

    Function getRequestParticipants

    • This method returns a list of all the participants on a customer request.

      Permissions required: Permission to view the customer request.

      Parameters

      • client: Client
      • parameters: { issueIdOrKey: string; limit?: number; start?: number }
        • issueIdOrKey: string

          The ID or key of the customer request to be queried for its participants.

        • Optionallimit?: number

          The maximum number of request types to return per page. Default: 50. See the Pagination section for more details.

        • Optionalstart?: number

          The starting index of the returned objects. Base index: 0. See the Pagination section for more details.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              _expands?: string[];
              _links?: {
                  base?: string;
                  context?: string;
                  next?: string;
                  prev?: string;
                  self?: string;
                  [key: string]: unknown;
              };
              isLastPage?: boolean;
              limit?: number;
              size?: number;
              start?: number;
              values?: {
                  _links?: {
                      avatarUrls?: Record<string, any>;
                      jiraRest?: string;
                      self?: string;
                      [key: string]: unknown;
                  };
                  accountId?: string;
                  active?: boolean;
                  displayName?: string;
                  emailAddress?: string;
                  key?: string;
                  name?: string;
                  timeZone?: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >