Webhook map
issuesnewIssue(issues.newIssue)updatedIssue(issues.updatedIssue)
projectsnewProject(projects.newProject)
HTTP handler setup
app/api/webhook/route.ts
Events
Issues
New Issue
issues.newIssue
Triggered when a new issue is created in Jira
Payload
| Name | Type | Required | Description |
|---|---|---|---|
webhookEvent | jira:issue_created | Yes | — |
timestamp | number | No | — |
issue | object | No | — |
user | object | No | — |
issue full type
issue full type
user full type
user full type
Response data full type
Response data full type
webhookHooks example
Updated Issue
issues.updatedIssue
Triggered when an issue is updated in Jira
Payload
| Name | Type | Required | Description |
|---|---|---|---|
webhookEvent | jira:issue_updated | Yes | — |
timestamp | number | No | — |
issue | object | No | — |
user | object | No | — |
changelog | object | No | — |
issue full type
issue full type
user full type
user full type
changelog full type
changelog full type
Response data full type
Response data full type
webhookHooks example
Projects
New Project
projects.newProject
Triggered when a new project is created in Jira
Payload
| Name | Type | Required | Description |
|---|---|---|---|
webhookEvent | project_created | Yes | — |
timestamp | number | No | — |
project | object | No | — |
project full type
project full type
Response data full type
Response data full type
webhookHooks example