The attachment from Jira to ServiceNow doesn't work as expected with create attachment webhook event.Issue -> Attachment doesn't get tagged to the right incident when a create attachment webhook event is triggered on the jira side.ReleaseIntegration Hub Spokes - Jira SpokeCauseThe issue_id which is responsible for interrelating the Incident to the issue in the jira side is not coming in the response or call back URL due to which the attachment gets tagged to a wrong incident.ResolutionAdd issue_id=${issue.id} in the callback URL as a query parameter which will hopefully pull in the Issue ID in the payload. include &issue_id=${issue.id} at the end in the Jira side where the webhook event is created. Current callback URL - https://instancename.service-now.com/api/sn_jira_spoke/jira_webhook_callbacks/wh_entry?ni.nolog.id=1234&ni.nolog.token=%EF%B7%9E%EF%B7%9F%EF%B7%92d4a2d4a21b6aa114ea26b455464bcbc7%EF%B7%AC%EF%B7%941%EF%B7%AC%EF%B7%ADF-rfl7j16jgHzmMXmJaBpg%3D%3DCuCS-vn85hYhVXJdR90ard-0dIky-eMX16g7oj4v%EF%B7%AE%EF%B7%AF New one should be like below:https://instancename.service-now.com/api/sn_jira_spoke/jira_webhook_callbacks/wh_entry?ni.nolog.id=1234&ni.nolog.token=%EF%B7%9E%EF%B7%9F%EF%B7%92d4a2d4a21b6aa114ea26b455464bcbc7%EF%B7%AC%EF%B7%941%EF%B7%AC%EF%B7%ADF-rfl7j16jgHzmMXmJaBpg%3D%3DCuCS-vn85hYhVXJdR90ard-0dIky-eMX16g7oj4v%EF%B7%AE%EF%B7%AF&issue_id=${issue.id} When the webhook event is triggered to ServiceNow, it receives the issue_id in the subflow inputs using which you can do lookup record in ServiceNow.