-
Type:
Suggestion
-
Resolution: Unresolved
-
Component/s: Atlassian CLI
-
None
-
1
Issue Summary
Steps to Reproduce
1. Authenticate to Jira Cloud via ACLI (acli jira auth login)
2. Attempt to retrieve Forms data attached to a Jira issue using a command such as:
-
-
- acli jira forms get --issue ONCALL-313303
- acli jira forms list --issue ONCALL-313303
-
3. Observe that no forms subcommand exists under acli jira
Expected Results
The ACLI should provide built-in commands for Jira Forms, such as:
- acli jira forms list --issue <issueKey> — List all forms attached to an issue
- acli jira forms get --issue <issueKey> --form <formId> — Retrieve form answers for a specific form on an issue
These commands should support both Basic Auth and OAuth 2.0 (3LO) authentication methods, using the correct URL patterns for each.
Actual Results
The ACLI does not include any forms subcommand. There is no way to programmatically retrieve Jira Forms data via the ACLI. The current command set covers work items, projects, boards, sprints, dashboards, fields, and filters — but not Forms.
Workaround
Users can call the Jira Forms REST API directly using curl, Postman, or custom scripts with Basic Auth (email + API token)