jira.js
    Preparing search index...

    Function unlinkTeamsFromExternalSource

    • Unlinks managed teams from their external references in bulk. Each team's membership setting will be transitioned from EXTERNAL to ORG_ADMIN_MANAGED.

      Parameters

      • client: Client
      • parameters: { orgId: string; teamIds: string[] }
        • orgId: string

          The ID of the organisation that owns the managed teams to unlink.

        • teamIds: string[]
      • Optionaloptions: RequestOptions

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