Jira.js - Jira Cloud API library
    Preparing search index...

    Interface AddActorUsers

    interface AddActorUsers {
        group?: string[];
        groupId?: string[];
        id: number;
        projectIdOrKey: string | number;
        user?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    group?: string[]

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

    groupId?: string[]

    The ID of the group to add. 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 | number

    The project ID or project key (case sensitive).

    user?: string[]

    The user account ID of the user to add.