Create URL of Issue In ServiceNow

Knowledge Heis1
Tera Contributor

Hello

@Ankur Bawiskar 

We are using Jira webhook. Whenever an issue is created or updated, the information flows into ServiceNow through the flow designer. Now we want to create the Issue URL and update that in one of the fields in the ServiceNow Custom table, We have stored the base URL in the system property, Can I create a URL for that Particalur Issue?

 

"corp.atlassian.net/browse/issue key "in flow designer?

1 ACCEPTED SOLUTION

Hemant Kumar Ch
Kilo Sage

Hello Knowledge 

 

Create a Action with input as Payload 

 

Add Script Step 

var allInputs = JSON.parse(inputs.payload);
outputs.key = allInputs.issue.key;

 

Map that output Variable to Key field 

 

Please like if it helped You

Ch Hemant Kumar

 

View solution in original post

21 REPLIES 21

Hello Mathieu

Could you please help me in how to process and scripting

Hemant Kumar Ch
Kilo Sage

Hello Knowledge 

 

Create a Action with input as Payload 

 

Add Script Step 

var allInputs = JSON.parse(inputs.payload);
outputs.key = allInputs.issue.key;

 

Map that output Variable to Key field 

 

Please like if it helped You

Ch Hemant Kumar