### List Projects Examples Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-list Examples demonstrating different ways to list Jira projects. ```bash # List up to 20 projects recently viewed $ acli jira project list --recent ``` ```bash # List all projects $ acli jira project list --paginate ``` ```bash # List 50 projects and output in JSON format $ acli jira project list --limit 50 --json ``` -------------------------------- ### Example acli feedback command Source: https://developer.atlassian.com/cloud/acli/reference/commands/feedback An example of how to submit feedback with summary, details, and email. ```bash $ acli feedback --summary "I have a problem" --details "I have a problem with the acli" --email "user@atlassian.com" ``` -------------------------------- ### Examples Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-create Examples of how to use the acli jira workitem comment create command. ```bash # Comment on work item with work item keys $ acli jira workitem comment --key "KEY-1" --body "This is a comment" ``` ```bash # Comment on work item with JQL query and plain text file $ acli jira workitem comment --jql "project = TEAM" --body-file "comment.txt" --edit-last ``` ```bash # Comment on work item with JQL query $ acli jira workitem comment --jql "project = TEAM" --editor ``` -------------------------------- ### Examples Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-board-list-sprints Examples demonstrating how to use the acli jira board list-sprints command with different options. ```bash # Get all sprints $ acli jira board list-sprints --id 123 # Get all sprints with state filters $ acli jira board list-sprints --id 123 --state active,closed # Get all sprints and output in JSON format $ acli jira board list-sprints --id 123 --json # Get all sprints and output in CSV format $ acli jira board list-sprints --id 123 --csv ``` -------------------------------- ### Examples Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-unarchive Examples of how to unarchive work items. ```bash # Unarchive work item with work item keys $ acli jira workitem unarchive --key "KEY-1,KEY-2" ``` ```bash # Unarchive work item by reading from a file $ acli jira workitem unarchive --from-file "issues.txt" --yes ``` -------------------------------- ### Example Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-switch An example of how to switch to a specific Atlassian organization admin account. ```bash $ acli admin auth switch --org myorgname ``` -------------------------------- ### Example Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-list Example of how to list work item links using the key flag. ```bash # List work item links $ acli jira workitem link list --key TEST-123 ``` -------------------------------- ### Example usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-status An example of how to use the acli admin auth status command. ```bash $ acli admin auth status ``` -------------------------------- ### Example Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-delete An example of how to delete a Jira project using its key. ```bash $ acli jira project delete --key "TEAM" ``` -------------------------------- ### Generate an example JSON input structure Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-create This example shows how to generate a sample JSON structure that can be used with the --from-json flag. ```bash acli jira workitem link create --generate-json ``` -------------------------------- ### Authentication Examples Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-login Examples demonstrating how to authenticate using an API key, either by reading from a file or standard input. ```bash # Authenticate using API key $ acli admin auth login --email admin@atlassian.com --token < token.txt OR $ echo | acli admin auth login --email admin@atlassian.com --token ``` -------------------------------- ### Example Logout Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-logout An example of how to use the logout command. ```bash $ acli jira auth logout ``` -------------------------------- ### Example of restoring a Jira project Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-restore An example of how to use the acli jira project restore command with the --key flag. ```bash $ acli jira project restore --key "TEAM" ``` -------------------------------- ### Example usage of acli rovodev auth status Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-status An example of how to use the 'acli rovodev auth status' command. ```bash $ acli rovodev auth status ``` -------------------------------- ### Example Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-logout An example of how to use the acli rovodev auth logout command. ```bash $ acli rovodev auth logout ``` -------------------------------- ### Example usage of acli jira auth status Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-status An example of how to use the acli jira auth status command. ```bash $ acli jira auth status ``` -------------------------------- ### Create a text field Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-create Example of creating a text field. ```bash $ acli jira field create --name "Customer Name" --type "com.atlassian.jira.plugin.system.customfieldtypes:textfield" ``` -------------------------------- ### Create a field with description Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-create Example of creating a field with a description. ```bash $ acli jira field create --name "Release Date" --type "com.atlassian.jira.plugin.system.customfieldtypes:datepicker" --description "The planned release date for this feature" ``` -------------------------------- ### Get project roles for visibility Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-visibility This example shows how to get project roles for comment visibility by specifying the --role and --project flags. ```bash acli jira workitem comment visibility --role --project PROJ-123 ``` -------------------------------- ### Examples Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-delete Examples of how to delete work item links using the acli command. ```bash # Delete a link between two work items $ acli jira workitem link delete --id 10001 ``` ```bash # Delete multiple links from a JSON file $ acli jira workitem link delete --from-json links.json ``` ```bash # Delete multiple links from a CSV file $ acli jira workitem link delete --from-csv links.csv ``` -------------------------------- ### View work item with work item keys Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-view Example of viewing a work item using its key. ```bash # View work item with work item keys $ acli jira workitem view KEY-123 ``` -------------------------------- ### Generate example JSON input structure Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create-bulk Command to generate a sample JSON structure for creating Jira issues. ```bash acli jira workitem create-bulk --generate-json ``` -------------------------------- ### Example usage of acli admin auth logout Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-logout An example of how to use the acli admin auth logout command. ```bash $ acli admin auth logout ``` -------------------------------- ### Authentication with Email and Token Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-login Example of authenticating using email and a token read from a file. ```bash # Authenticate with your email and Rovo Dev scoped API token $ acli rovodev auth login --email "user@atlassian.com" --token < token.txt ``` -------------------------------- ### Restore Field Example Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-cancel-delete Example of how to restore a custom field from the trash using its ID. ```bash # Restores the field from the trash $ acli jira field cancel-delete --id customfield_12345 ``` -------------------------------- ### Authentication on Windows Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-login Example of authenticating on Windows using email and a token piped from a file. ```powershell # Authenticate with your email and Rovo Dev scoped API token on Windows Get-Content token.txt | .\acli.exe rovodev auth login --email "user@atlassian.com" --token ``` -------------------------------- ### Create work item from file and supplying all work item details Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create This example demonstrates creating a work item from a file, specifying project, type, assignee, and labels. ```bash acli jira workitem create --from-file "workitem.txt" --project "PROJ" --type "Bug" --assignee "user@atlassian.com" --label "bug,cli" ``` -------------------------------- ### Create work item by supplying a summary, project name and work item type Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create This example shows how to create a work item by providing the summary, project name, and work item type as flags. ```bash acli jira workitem create --summary "New Task" --project "TEAM" --type "Task" ``` -------------------------------- ### Interactive Authentication Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-login Example of authenticating in interactive mode. ```bash # Interactive mode $ acli rovodev auth login ``` -------------------------------- ### View work item with work item keys and view in a web browser Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-view Example of viewing a work item in a web browser. ```bash # View work item with work item keys and view in a web browser $ acli jira workitem view KEY-123 --web ``` -------------------------------- ### Create a select field with searcher Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-create Example of creating a select field with a searcher. ```bash $ acli jira field create --name "Priority Level" --type "com.atlassian.jira.plugin.system.customfieldtypes:select" --searcherKey "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher" ``` -------------------------------- ### Create work item from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create This example shows how to create a work item using a JSON file as input. ```bash acli jira workitem create --from-json "workitem.json" ``` -------------------------------- ### Archive a Jira project by key Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-archive Example of archiving a Jira project using its key. ```bash $ acli jira project archive --key "TEAM" ``` -------------------------------- ### View work item with work item keys and a list of field to return Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-view Example of viewing a work item and specifying which fields to return. ```bash # View work item with work item keys and a list of field to return $ acli jira workitem view KEY-123 --fields summary,comment ``` -------------------------------- ### Create multiple links from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-create This example demonstrates creating multiple links by reading mapping information from a JSON file. ```bash acli jira workitem link create --from-json links.json ``` -------------------------------- ### Example Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-delete An example of how to delete a specific workitem comment using its issue key and comment ID. ```bash # Delete workitem comments $ acli jira workitem comment delete --issue TEST-1 --id 10023 ``` -------------------------------- ### List work items in sprint Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-sprint-list-workitems Example of how to list work items in a specific sprint and board. ```bash # List work items in sprint $ acli jira sprint list-workitems --sprint 1 --board 6 ``` -------------------------------- ### Authenticate with email, site, and API token (stdin) Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-login Example of authenticating using email, site name, and an API token read from standard input. ```bash $ acli jira auth login --site "mysite.atlassian.net" --email "user@atlassian.com" --token < token.txt OR $ echo | acli jira auth login --site "mysite.atlassian.net" --email "user@atlassian.com" --token ``` -------------------------------- ### Authenticate with email, site, and API token (Windows) Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-login Example of authenticating using email, site name, and an API token on Windows. ```powershell $ Get-Content token.txt | .\acli.exe jira auth login --site "mysite.atlassian.net" --email "user@atlassian.com" --token ``` -------------------------------- ### Create issues from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create-bulk Example of creating Jira issues by providing a JSON file as input. ```bash acli jira workitem create-bulk --from-json issues.json ``` -------------------------------- ### Authenticate using web browser (OAuth) Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-login Example of authenticating via a web browser using OAuth. ```bash $ acli jira auth login --web ``` -------------------------------- ### Clone work item with work item keys Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-clone This example demonstrates how to clone work items using their keys and specifying a target project. ```bash acli jira workitem clone --key "KEY-1,KEY-2" --to-project "TEAM" ``` -------------------------------- ### Create issues from a CSV file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create-bulk Example of creating Jira issues by providing a CSV file as input. ```bash acli jira workitem create-bulk --from-csv issues.csv ``` -------------------------------- ### List work item attachment Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-attachment-list This example shows how to list attachments for a specific work item. ```bash acli jira workitem attachment list --key TEST-123 ``` -------------------------------- ### View work item by reading work item keys from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-view Example of viewing a work item by providing keys from a JSON file. ```bash # View work item by reading work item keys from a JSON file $ acli jira workitem view KEY-123 --json ``` -------------------------------- ### Activate a user with email or account ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-user-activate Examples of activating users using email addresses, account IDs, or from a file. ```bash acli admin user activate --email john@example.com,anna@example.com acli admin user activate --id abcd,123 acli admin user activate --from-file listofmails.txt ``` -------------------------------- ### Add a filter as favourite Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-filter-add-favourite Example of adding a filter as a favourite using its ID. ```bash acli jira filter add-favourite --filterId 10001 ``` -------------------------------- ### List work item comments Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-list This example shows how to list comments for a specific work item using its key. ```bash acli jira workitem comment list --key TEST-123 ``` -------------------------------- ### List available groups for visibility Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-visibility This example shows how to list available groups for comment visibility by specifying the --group flag. ```bash acli jira workitem comment visibility --group ``` -------------------------------- ### Delete a field Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-delete Example of deleting a custom field using its ID. ```bash acli jira field delete --id customfield_12345 ``` -------------------------------- ### Create a link between two work items Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-create This example shows how to create a link between two work items using their keys and specifying the link type. ```bash acli jira workitem link create --out KEY-123 --in KEY-456 --type Blocks ``` -------------------------------- ### Delete work item by reading from a file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-delete Example of deleting work items by reading their identifiers from a file. ```bash # Delete work item by reading from a file $ acli jira workitem delete --from-file "issues.txt" --yes ``` -------------------------------- ### Delete work item with work item keys Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-delete Example of deleting work items using their keys. ```bash # Delete work item with work item keys $ acli jira workitem delete --key "KEY-1,KEY-2" ``` -------------------------------- ### Delete work item with JQL query Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-delete Example of deleting work items using a JQL query. ```bash # Delete work item with JQL query $ acli jira workitem delete --jql "project = TEAM" ``` -------------------------------- ### Remove watcher from issue Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-watcher-remove Example of removing a watcher from an issue using the acli command. ```bash acli jira workitem watcher remove --key TEST-1 --user 5b10ac8d82e05b22cc7d4ef5 ``` -------------------------------- ### Get available workitem link types Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-type This command retrieves the available workitem link types. ```bash acli jira workitem link type [flags] ``` ```bash # Get available workitem link types $ acli jira workitem link type ``` -------------------------------- ### Edit work item with work item keys Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit Example of editing work items by specifying their keys and providing a new summary. ```bash # Edit work item with work item keys $ acli jira workitem edit --key "KEY-1,KEY-2" --summary "New Summary" ``` -------------------------------- ### Delete work item with Filter ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-delete Example of deleting work items using a Filter ID. ```bash # Delete work item with Filter ID $ acli jira workitem delete --filter 10001 ``` -------------------------------- ### Search for work items with JQL query Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-search Examples of searching for work items using JQL queries with different output formats and options. ```bash # Search for work items with JQL query $ acli jira workitem search --jql "project = TEAM" --paginate $ acli jira workitem search --jql "project = TEAM" --count $ acli jira workitem search --jql "project = TEAM" --fields "key,summary,assignee" --csv $ acli jira workitem search --jql "project = TEAM" --limit 50 --json ``` -------------------------------- ### Cancel deletion of a managed account Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-user-cancel-delete Examples of how to cancel the deletion of a managed account using the acli command. ```bash # Cancel deletion of a managed account from Atlassian Administration $ acli admin user cancel-delete --email abc@atlassian.com $ acli admin user cancel-delete --id 721217379117310973 $ acli admin user cancel-delete --from-file listofmails.txt ``` -------------------------------- ### Delete a managed account from Atlassian Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-user-delete Examples of deleting a managed account using email, account ID, or from a file. ```bash acli admin user delete --email abc@atlassian.com ``` ```bash acli admin user delete --id 721217379117310973 ``` ```bash acli admin user delete --from-file listofmails.txt ``` -------------------------------- ### Change the owner of the provided filters Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-filter-change-owner Example of how to change the owner of multiple filters by providing their IDs and the new owner's email. ```bash acli jira filter change-owner --id 123,1234,12345 --owner anna@pandora.com ``` -------------------------------- ### Provide optional fields in --from-project Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-create This command demonstrates creating a project from an existing one, including optional fields like description, URL, and lead email. ```bash acli jira project create --from-project "TEAM" --key "NEWTEAM" --name "New Project" --description "New project description" --url "https://example.com" --lead-email "user@atlassian.com" ``` -------------------------------- ### Edit work item from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit Example of editing work items by providing a JSON file containing their definitions. ```bash # Edit work item from a JSON file $ acli jira workitem edit --from-json "workitem.json" ``` -------------------------------- ### Delete work item attachment Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-attachment-delete Example of deleting a work item attachment using the acli command. ```bash acli jira workitem attachment delete --id 12345 ``` -------------------------------- ### Deactivate a user with email or account ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-user-deactivate Examples of deactivating users using email addresses, account IDs, or from a file. ```bash acli admin user deactivate --email john@example.com,anna@example.com ``` ```bash acli admin user deactivate --id abcd123 ``` ```bash acli admin user deactivate --from-file listofmails.txt ``` -------------------------------- ### Edit work item with JQL query Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit Example of editing work items by using a JQL query to select them and assigning them to a specific user. ```bash # Edit work item with JQL query $ acli jira workitem edit --jql "project = TEAM" --assignee "user@atlassian.com" ``` -------------------------------- ### Search for work items with filter ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-search Example of searching for work items using a filter ID and opening the results in the web browser. ```bash # Search for work items with filter ID $ acli jira workitem search --filter 10001 --web ``` -------------------------------- ### Edit work item with Filter ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit Example of editing work items identified by a filter ID, updating the description, and confirming without a prompt. ```bash # Edit work item with Filter ID $ acli jira workitem edit --filter 10001 --description "Updated description" --yes ``` -------------------------------- ### Fetch project details Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-view Fetches a project details with the given key, optionally in JSON format. ```bash acli jira project view --key "TEAM" ``` ```bash acli jira project view --key "TEAM" --json ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-transition Options for the acli jira workitem transition command. ```bash --filter string Filter ID of work items to be transitioned -h, --help Show help for command --ignore-errors Ignore the errors and continue --jql string JQL query for work items to be transitioned --json Generate a JSON output -k, --key string A list of work item keys to be transitioned -s, --status string Status to transition the work item -y, --yes Confirm transition without prompting ``` -------------------------------- ### Show help for command Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-user Shows help for the acli admin user command. ```bash acli admin user --help ``` -------------------------------- ### Synopsis Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-transition The synopsis of the acli jira workitem transition command. ```bash acli jira workitem transition [flags] ``` -------------------------------- ### Create a project from an existing project Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-create This command creates a new Jira project by cloning an existing one, specifying the key and name for the new project. ```bash acli jira project create --from-project "TEAM" --key "NEWTEAM" --name "New Project" ``` -------------------------------- ### Create a project from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-create This command creates a Jira project using details provided in a JSON file. ```bash acli jira project create --from-json "project.json" ``` -------------------------------- ### Options for acli jira project archive Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-archive Available options for the acli jira project archive command. ```bash -h, --help Show help for command --key string Key of the project to be archived ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-list Available flags and their descriptions for the acli jira project list command. ```bash -h, --help Show help for command --json Generate a JSON output -l, --limit int Maximum number of projects to fetch (default 30) --paginate HTTP requests to fetch all pages of results. The '--limit' is ignored --recent Returns a list of up to 20 projects recently viewed by the user ``` -------------------------------- ### Transition work item with work item keys Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-transition Transition a work item using its key. ```bash # Transition work item with work item keys $ acli jira workitem transition --key "KEY-1,KEY-2" --status "Done" ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-list The basic command structure for listing Jira projects. ```bash acli jira project list [flags] ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-switch Lists the available options for the 'acli jira auth switch' command. ```bash acli jira auth switch -e, --email string Atlassian account email -h, --help Show help for command -s, --site string Atlassian account site ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-board-list-sprints Available options for the acli jira board list-sprints command. ```bash --csv Output in CSV format -h, --help Show help for command --id string The ID of the board that contains the requested sprints. --json Output in JSON format --limit int Limit the number of sprints, if the limit is > than the page size apply pagination. (default 50) --paginate Loads all sprints and output as they become available. --state string Filters results to sprints in specified states. Valid values: future, active, closed. You can define multiple states separated by commas, e.g. active,closed ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create-bulk The basic command structure for bulk creating Jira work items. ```bash acli jira workitem create-bulk [flags] ``` -------------------------------- ### Transition work item with JQL query Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-transition Transition a work item using a JQL query. ```bash # Transition work item with JQL query $ acli jira workitem transition --jql "project = TEAM" --status "In Progress" ``` -------------------------------- ### List my filters Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-filter-list This command lists the user's filters. ```bash acli jira filter list --my ``` -------------------------------- ### Generate a JSON file for project creation Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-create This command generates a JSON file that can be used as input for creating a Jira project via the --from-json flag. ```bash acli jira project create --generate-json ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-login Available options for the acli rovodev auth login command. ```bash # Options -e, --email string User email is required for authentication -h, --help Show help for command --token Read token from standard input ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-switch Available options for the acli admin auth switch command. ```bash -h, --help Show help for command -o, --org string Org of the admin account from which to switch ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-switch The basic usage of the acli admin auth switch command. ```bash acli admin auth switch [flags] ``` -------------------------------- ### acli jira auth login command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-login The basic command structure for authenticating with Jira. ```bash acli jira auth login [flags] ``` -------------------------------- ### Synopsis Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-create Add a comment to a work item or multiple work items using the default visibility for the project. ```bash acli jira workitem comment create [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-login The basic command to authenticate to Rovo Dev. ```bash acli rovodev auth login [flags] ``` -------------------------------- ### Help option Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-status Shows help for the acli admin auth status command. ```bash -h, --help Show help for command ``` -------------------------------- ### Help flag for acli rovodev Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev Shows help for the acli rovodev command. ```bash acli rovodev -h ``` ```bash acli rovodev --help ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-delete Available options for the acli jira project delete command. ```bash -h, --help Show help for command --key string Key of the project to be deleted ``` -------------------------------- ### Restore a Jira project command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-restore The basic command structure for restoring a Jira project. ```bash acli jira project restore [flags] ``` -------------------------------- ### Switch to Specific Site and Email Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-switch Switches to a Jira account by specifying both the site and the email address. ```bash acli jira auth switch --site mysite.atlassian.net --email user@atlassian.com ``` -------------------------------- ### Help Option Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-logout Shows help for the logout command. ```bash -h, --help Show help for command ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-board-list-sprints The basic usage of the acli jira board list-sprints command. ```bash acli jira board list-sprints [flags] ``` -------------------------------- ### acli feedback command usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/feedback The basic usage of the acli feedback command. ```bash acli feedback [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-switch The basic command to switch between Jira accounts. ```bash acli jira auth switch [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-sprint-list-workitems The basic usage of the acli jira sprint list-workitems command. ```bash acli jira sprint list-workitems [flags] ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-login Available flags for the acli admin auth login command. ```bash # Admin email is required for authentication -e, --email string -h, --help Show help for command --token Read API key from standard input (create one at: https://admin.atlassian.com -> settings -> API Keys) ``` -------------------------------- ### List my favourite filters Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-filter-list This command lists the user's favourite filters. ```bash acli jira filter list --favourite ``` -------------------------------- ### Generate a JSON file that could be used for workitem creation via --from-json flag Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-create This command generates a JSON file that can be used as input for creating work items. ```bash acli jira workitem create --generate-json ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-unarchive Options for the acli jira workitem unarchive command. ```bash -f, --from-file string Read the list of work item IDs to be unarchived from the file. The file may contain work item IDs, work item keys separated by commas, white spaces, or new lines -h, --help Show help for command --ignore-errors Ignore the errors and continue --json Generate a JSON output -k, --key string A list of work item keys to be unarchived -y, --yes Confirm unarchival without prompting ``` -------------------------------- ### acli jira board search command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-board-search The basic command to search through all Jira boards. ```bash acli jira board search [flags] ``` -------------------------------- ### acli jira board search options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-board-search Available flags for the acli jira board search command. ```bash --csv Output in CSV format --filter string Filter ID. Filters results to boards that are relevant to a filter. Not supported for next-gen boards. -h, --help Show help for command --json Output in JSON format --limit int Limit the number of boards, if the limit is > than the page size apply pagination. (default 50) --name string Filters results to boards that match or partially match the specified name. --orderBy string Ordering of the results by a given field. If not provided, values will not be sorted. Valid values: name, -name, +name --paginate Loads all boards and output as they become available. --private Boolean. Appends private boards to the end of the list. The name and type fields are excluded for security reasons. Default is false. --project string Project key. Filters results to boards that are relevant to a project. Relevance means that the jql filter defined in the board contains a reference to a project. --type string Filters results to boards of the specified types. Valid values: scrum, kanban, simple. ``` -------------------------------- ### Show Jira account status command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-status The basic command to show Jira account status. ```bash acli jira auth status [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-login The basic command structure for authenticating organization admin-specific tasks. ```bash acli admin auth login [flags] ``` -------------------------------- ### Switch to Specific Site Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-switch Switches to a Jira account associated with a specific site. ```bash acli jira auth switch --site mysite.atlassian.net ``` -------------------------------- ### CLI Command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-list The basic command to list work item links. ```bash acli jira workitem link list [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-unarchive Unarchives work item or multiple work items. ```bash acli jira workitem unarchive [flags] ``` -------------------------------- ### acli jira project archive command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-archive The command to archive a Jira project. ```bash acli jira project archive [flags] ``` -------------------------------- ### CLI Command Structure Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-search The basic structure for the acli jira workitem search command. ```bash acli jira workitem search [flags] ``` -------------------------------- ### CLI Command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-view The basic structure of the acli jira workitem view command. ```bash acli jira workitem view [key] [flags] ``` -------------------------------- ### Archive work item with work item keys Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-archive Archives a work item using its key. ```bash # Archive work item with work item keys $ acli jira workitem archive --key "KEY-1,KEY-2" ``` -------------------------------- ### Interactive Mode Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-switch Initiates an interactive prompt to switch Jira accounts. ```bash acli jira auth switch ``` -------------------------------- ### acli feedback command options Source: https://developer.atlassian.com/cloud/acli/reference/commands/feedback Available flags for the acli feedback command. ```bash -a, --attachments strings Multiple files of attachments to be added to the request -d, --details string Details of the feedback -e, --email string Email address to receive feedback response -h, --help Show help for command -s, --summary string Summary of the feedback -t, --time string Provide an estimated timeframe for when the problem occurred, for example --time=1h, --time=15m ``` -------------------------------- ### acli rovodev command usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev The base command for interacting with Rovo Dev. ```bash acli rovodev [flags] ``` -------------------------------- ### Archive work item from file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-archive Archives work items listed in a file, confirming without prompting. ```bash # Archive work item from file $ acli jira workitem archive --from-file "issues.txt" --yes ``` -------------------------------- ### Show status for Rovo Dev account Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-status This command shows the status for the Rovo Dev account. ```bash acli rovodev auth status [flags] ``` -------------------------------- ### Transition work item with filter ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-transition Transition a work item using a filter ID. ```bash # Transition work item with filter ID $ acli jira workitem transition --filter 10001 --status "To Do" --yes ``` -------------------------------- ### Searches for the Jira filters Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-filter-search Searches for Jira filters using various flags. ```bash acli jira filter search ``` ```bash acli jira filter search --paginate --csv ``` ```bash acli jira filter search --limit 5 --json ``` -------------------------------- ### Archive work item with JQL query Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-archive Archives a work item using a JQL query. ```bash # Archive work item with JQL query $ acli jira workitem archive --jql "project = TEAM" ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit List of available options for the 'acli jira workitem edit' command. ```bash # Options acli jira workitem edit [flags] ### Options ``` -a, --assignee string Assign work item with email or account ID. Use '@me' to self-assign, 'default' to assign to the project's default assignee -d, --description string Edit the description in plain text or Atlassian Document Format (ADF) --description-file string Read the description in plain text or Atlassian Document Format (ADF) from the file --filter string Filter ID of work items to be edited --from-json string Read the work item definition from a JSON file --generate-json Generates a JSON file that could be used for work item editing -h, --help Show help for command --ignore-errors Ignore the errors and continue --jql string JQL query for work items to be edited --json Generate a JSON output -k, --key string A list of work item keys to be edited -l, --labels string Edit the labels --remove-assignee Remove the assignee --remove-labels string Remove the labels -s, --summary string Edit the summary -t, --type string Edit the work item type -y, --yes Confirm edit without prompting ``` ``` -------------------------------- ### Switch to Specific Email Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-switch Switches to a Jira account associated with a specific email address. ```bash acli jira auth switch --email user@atlassian.com ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-delete Available options for the acli jira workitem link delete command. ```bash --from-csv string Read a CSV file for Link IDs to delete --from-json string Read a JSON file for Link IDs to delete -h, --help Show help for command --id string Link IDs to delete --ignore-errors Ignore the errors and continue with the next link --yes Confirm link deletion without prompting ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-cancel-delete Available options for the acli jira field cancel-delete command. ```bash # -h, --help Show help for command # --id string The ID of a custom field to remove from the trash. ``` -------------------------------- ### CLI Command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-delete The basic command structure for deleting a Jira project. ```bash acli jira project delete [flags] ``` -------------------------------- ### Generate a JSON file for project update Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-update Generates a JSON file that can be used for updating a project. ```bash acli jira project update --generate-json ``` -------------------------------- ### Command Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-delete Available options for the acli jira workitem delete command. ```bash --filter string Filter ID of work items to be deleted -f, --from-file string Reads the work items to be deleted from the file. The file may contain work item IDs or keys separated by commas, white spaces, or new lines -h, --help Show help for command --ignore-errors Ignore the errors and continue --jql string JQL query for work items to be deleted --json Generate a JSON output -k, --key string A list of work item keys to be deleted -y, --yes Confirm delete without prompting ``` -------------------------------- ### Update project from a JSON file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-update Updates a Jira project using details from a JSON file. ```bash acli jira project update --project-key "TEAM1" --from-json "project.json" ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-field-cancel-delete The basic command usage for acli jira field cancel-delete. ```bash acli jira field cancel-delete [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-delete The basic usage of the acli jira workitem delete command. ```bash acli jira workitem delete [flags] ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit The basic command usage for editing Jira work items. ```bash acli jira workitem edit [flags] ``` -------------------------------- ### Options Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-delete Available options for the delete command, including help, comment ID, and workitem key. ```bash # Options -h, --help Show help for command --id string Id of the comment to be deleted --key string Workitem key to delete the links for ``` -------------------------------- ### Assign work item with work item key Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-assign Assign a work item using its key. ```bash acli jira workitem assign --key "KEY-1" --assignee "@me" ``` -------------------------------- ### Searches for the Jira dashboards Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-dashboard-search Searches for the Jira dashboards. When multiple search parameters are present, the search ensures that all the parameters are satisfied. ```bash acli jira dashboard search ``` ```bash acli jira dashboard search --paginate --csv ``` ```bash acli jira dashboard search --limit 5 --json ``` -------------------------------- ### Command Usage Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-link-delete The basic command structure for deleting work item links. ```bash acli jira workitem link delete [flags] ``` -------------------------------- ### Show status for organization admin account Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-status The command to show the status for an organization admin account. ```bash acli admin auth status [flags] ``` -------------------------------- ### Assign work item with JQL query Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-assign Assign work items based on a JQL query. ```bash acli jira workitem assign --jql "project = TEAM" --assignee "user@atlassian.com" ``` -------------------------------- ### Assign work item from file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-assign Assign work items listed in a file, with JSON output and option to remove assignee. ```bash acli jira workitem assign --from-file "issues.txt" --remove-assignee --json ``` -------------------------------- ### Update project key and name Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-project-update Updates a Jira project's key and name. ```bash acli jira project update --project-key "TEAM1" --key "TEAM" --name "New Name" ``` -------------------------------- ### Filter dashboards by owner and project name Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-dashboard-search Filter dashboards by owner and project name. ```bash acli jira dashboard search --owner user@atlassian.com --name 'report' ``` -------------------------------- ### Generate JSON for workitem edit Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-edit Command to generate a JSON file that can be used for editing work items. ```bash # Generate a JSON file that could be used for workitem edit via --from-json flag $ acli jira workitem edit --generate-json ``` -------------------------------- ### CLI Command Source: https://developer.atlassian.com/cloud/acli/reference/commands/rovodev-auth-logout The basic command to remove authentication for a Rovo Dev account. ```bash acli rovodev auth logout [flags] ``` -------------------------------- ### Update comment from file Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-update Updates the body of a comment on a work item using plain text from a file. ```bash $ acli jira workitem comment update --key TEST-123 --id 10001 --body-file comment.txt ``` -------------------------------- ### Filter dashboards by owner and project name Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-filter-search Filters Jira dashboards by owner's email and a partial match of the filter name. ```bash acli jira filter search --owner user@atlassian.com --name 'report' ``` -------------------------------- ### Archive work item with filter ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-archive Archives a work item using a filter ID. ```bash # Archive work item with filter ID $ acli jira workitem archive --filter 10001 ``` -------------------------------- ### Logout Command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-auth-logout Logs out the user from the Jira account. ```bash acli jira auth logout [flags] ``` -------------------------------- ### Update comment with role visibility Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-update Updates a comment on a work item, setting its visibility to a specific role. ```bash $ acli jira workitem comment update --key TEST-123 --id 10001 --body "Internal comment" --visibility-role "Administrators" ``` -------------------------------- ### Update comment with ADF format Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-update Updates the body of a comment on a work item using Atlassian Document Format (ADF) from a JSON file. ```bash $ acli jira workitem comment update --key TEST-123 --id 10001 --body-adf comment.json ``` -------------------------------- ### CLI Command Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-delete The basic command structure for deleting a workitem comment. ```bash acli jira workitem comment delete [flags] ``` -------------------------------- ### Assign work item with filter ID Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-assign Assign work items using a filter ID. ```bash acli jira workitem assign --filter 10001 --assignee "default" ``` -------------------------------- ### Update comment with group visibility and notifications Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-update Updates a comment on a work item, setting its visibility to a specific group and notifying users. ```bash $ acli jira workitem comment update --key TEST-123 --id 10001 --body "Team update" --visibility-group "dev-team" --notify ``` -------------------------------- ### Update comment body Source: https://developer.atlassian.com/cloud/acli/reference/commands/jira-workitem-comment-update Updates the body of a comment on a work item using direct text. ```bash $ acli jira workitem comment update --key TEST-123 --id 10001 --body "Updated comment text" ``` -------------------------------- ### acli admin auth logout command Source: https://developer.atlassian.com/cloud/acli/reference/commands/admin-auth-logout The command to remove authentication and log out of an organization admin account. ```bash acli admin auth logout [flags] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.