ServiceNow to JIRA integration
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 12:07 AM
Hi,
I am trying to create the new ticket in JIRA from ServiceNow using rest message. Please share the content body in the ServiceNow.
Thanks,
Manjunath

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 12:18 AM
Hi Manju,
Check link that has detailed step by step process.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-13-2023 01:11 AM
Hi Jaspal,
Thank you..
Thanks,
Manju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2023 01:51 AM
Hi Manju
You can use out of the box webhooks, or you can go to 3th party tools like Exalate to resolve this.
Here is a content body:
“fields”: {
“project”:
{
“key”: “SER”
},
“summary”: “${shortDescription}”,
“issuetype”: {
“name”: “Story”
},
“customfield_10037”: “${incidentNumber}”,
“description”: {
“type”: “doc”,
“version”: 1,
“content”: [
{
“type”: “paragraph”,
“content”: [
{
“text”: “${description}”,
“type”: “text”
}
]
}
]
}
}
}