Jira Webhooks
Developer ToolsJira 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_createdA new issue was created
jira:issue_updatedAn issue was updated
jira:issue_deletedAn issue was deleted
sprint_createdA sprint was created
sprint_startedA sprint was started
sprint_closedA sprint was closed
Signature Verification
X-Hub-SignatureHMAC-SHA256 of request body
Sample Payload
jira:issue_created
{
"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β¦
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.
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
- Click Create live endpoint above to get a public HTTPS URL
- Paste the URL into Jira's webhook settings
- In the Forwarding tab, add a rule: target =
http://localhost:3000/webhooks/jira - 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