All Providers
πŸ“‹

Jira Webhooks

Developer Tools

Jira Cloud sends webhook events for issue changes, sprint updates, project events, and user management. Used for syncing with external tools like Slack, Linear, or custom dashboards.

Webhook Events

6 event types

jira:issue_created

A new issue was created

jira:issue_updated

An issue was updated

jira:issue_deleted

An issue was deleted

sprint_created

A sprint was created

sprint_started

A sprint was started

sprint_closed

A sprint was closed

Signature Verification

Header
X-Hub-Signature
Method

HMAC-SHA256 of request body

View official docs

Sample Payload

jira:issue_created

application/json
{
  "timestamp": 1712000000000,
  "webhookEvent": "jira:issue_created",
  "issue": {
    "id": "10001",
    "key": "PROJ-1",
    "fields": {
      "summary": "Fix webhook signature verification",
      "status": {
        "name": "To Do"
      },
      "assignee": {
        "displayName": "Jane Doe"
      },
      "priority": {
        "name": "High"
      }
    }
  }
}

Send a Sample Jira Payload

Pick an event, enter your endpoint URL (or localhost), and fire a realistic Jira payload with one click β€” no Jira account needed.

Test Sender

Loading samples…

No signup

Capture & Inspect Jira Webhooks Live

Get a free public HTTPS endpoint below, point Jira at it, and watch events arrive in real time. Use the forwarding rule to relay them straight to your local server.

Live demo β€” no signup required

See it work in real time

Click below to get a live webhook URL instantly. Paste it anywhere β€” Stripe, GitHub, Postman β€” and watch events arrive right here.

Expires in 1 hour Β· No account needed

Forward Jira webhooks to localhost

  1. Click Create live endpoint above to get a public HTTPS URL
  2. Paste the URL into Jira's webhook settings
  3. In the Forwarding tab, add a rule: target = http://localhost:3000/webhooks/jira
  4. Fire a test event from Jira β€” it arrives in the inspector and hits your local handler simultaneously

Ready to test your Jira webhook handler?

Free HTTPS endpoint with forwarding, retry, and event replay. No install, no CLI, no deploy.

Create Free Account