I'm currently working on setting up a webhook to receive sprint updates through the Atlassian API using a POST request. However, I'm encountering issues with scope permissions, specifically receiving "incorrect scope" error
Api endpoint - rest/webhooks/1.0/webhook
{
"name": "Sprint Update Webhook",
"url": "https://myserver.com/webhook",
"events": [
"jira:issue_updated",
"sprint_updated"
]
}
Based on the information provided, it seems you're encountering scope permission issues when trying to create a webhook for sprint updates. Here are some key points and suggestions to address this:
manage:jira-webhook
scope.jira:issue_updated
event, you also need the read:issue-details:jira
scope.sprint_updated
event you're trying to use is not a standard Jira webhook event. Instead, you should look for Jira Software-specific events related to sprints.rest/webhooks/1.0/webhook
) seems correct, but double-check it against the latest Jira API documentation.Suggestions:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.