Skip to content

jira issue weblink

  • Usage: jira issue weblink KEY... [flags]

Attach a Jira remote web link to one or more issues. Use it to point an issue at a pull request, design document, incident, or other external URL.

--dry-run validates local URL syntax and previews the request without contacting Jira or checking whether the target URL is reachable. Multiple issue keys return per-key results.

--title <TEXT>

Display title for the link

--url <URL>

Web link target URL (required)

Accepts a url.

Safety

--dry-run

Preview without creating the link

Execution

-p --parallelism <N>

Maximum concurrent requests (1-16)

Default: 1

Output fields

With --output json, the response envelope's data object carries these fields. Run jira agent schema for the full machine-readable schema.

Field Type Description
dry_run boolean
issue.id string
issue.key string
issue.self string
title string
url string
url_remote_checked boolean Whether the command fetched the target URL; always false.

Examples

jira issue weblink PROJ-123 --url https://github.com/acme/app/pull/42 --title "Fix build"
jira issue weblink PROJ-123 --url https://example.com/design --title "Design note" --dry-run # (1)!
jira issue weblink PROJ-123 PROJ-124 --url https://example.com/runbook --title "Runbook" --dry-run --output=json # (2)!
  1. Preview adding a link without contacting Jira
  2. Attach the same link to several issues and keep results parseable