jira.js
    Preparing search index...

    Function removeMembers

    • The account IDs specified will be removed from the team.

      Parameters

      • client: Client
      • parameters: {
            members: { accountId: string; [key: string]: unknown }[];
            orgId: string;
            teamId: string;
        }
        • members: { accountId: string; [key: string]: unknown }[]
        • orgId: string

          The ID of the organisation of the team you are removing members from.

        • teamId: string

          The ID of the team you are removing members from.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              errors: {
                  accountId: string;
                  code: string;
                  message: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >