You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hello everyone.
I'm trying to set up a webhook via API to receive events from my project. This is the curl request I'm attempting:
curl --location 'https://api.atlassian.com/ex/jira/cloud_id/rest/api/3/webhook' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer bearer_token' \
--data '{"url": "https://webhook.site/5975cd73-75db-433c-aaf0-283782da5928", "webhooks": [{"events": ["jira:issue_created", "jira:issue_updated", "jira:issue_deleted", "comment_created"], "fieldIdsFilter": null, "jqlFilter": "project != null"}]}'
But I'm not receiving any events at the specified URL. Does anyone know what I might be doing wrong?