- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2018 10:56 AM
I want to create an automation process to close tickets in ServiceNow once the tickets are created in Jira. Basically, once there is a request in SN and a ticket is created, automatically a new request will be created in JIRA. So once the ticket is created in JIRA we no longer have to worry about the solution, JIRA will take care of that. So I need a process once after the ticket is created in JIRA the incident should close in ServiceNow
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2018 11:26 AM
Hi,
Do you receive Jira issue number in response? If yes, then write a before update business rule which closes the incident after you receive the Jira issue number.
When to run: Jira issue number field changes and is not empty
Action: set state to closed/resolved and set close codes and closed notes.
Hope it helps.
Thanks,
Nithish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2018 11:14 AM
Hi,
Do you capture Jira issue number in response?
Thanks,
Nithish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2018 11:16 AM
you need to use jira api here and by using rest message you can solve it.
here you need to use get and Post method in rest message.
refer the doc below to configure the rest message.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2018 11:26 AM
Hi,
Do you receive Jira issue number in response? If yes, then write a before update business rule which closes the incident after you receive the Jira issue number.
When to run: Jira issue number field changes and is not empty
Action: set state to closed/resolved and set close codes and closed notes.
Hope it helps.
Thanks,
Nithish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2018 01:22 PM
Thanks Nithish.
Are you able to attach a screenshot of what the BR should look like?