jira.js
    Preparing search index...

    Function deleteActor

    • Deletes actors from a project role for the project.

      To remove default actors from the project role, use Delete default actors from project role.

      This operation can be accessed anonymously.

      Permissions required: Administer Projects project permission for the project or Administer Jira global permission.

      Parameters

      • client: Client
      • parameters: {
            group?: string;
            groupId?: string;
            id: number;
            projectIdOrKey: string;
            user?: string;
        }
        • Optionalgroup?: string

          The name of the group to remove from the project role. This parameter cannot be used with the groupId parameter. As a group's name can change, use of groupId is recommended.

        • OptionalgroupId?: string

          The ID of the group to remove from the project role. This parameter cannot be used with the group parameter.

        • id: number

          The ID of the project role. Use Get all project roles to get a list of project role IDs.

        • projectIdOrKey: string

          The project ID or project key (case sensitive).

        • Optionaluser?: string

          The user account ID of the user to remove from the project role.

      • Optionaloptions: RequestOptions

      Returns Promise<void>