Hello All,
I need to make Rest API calls from Jira whenever an issue is created in a particular project. And also want to update the field values in Jira through another call. Is it possible??
If so please suggest..
You can create an automation from Project Settings -> Automation section and send a web request when issue created.
Hello @Tansu Akdeniz
Thank you for the Quick response.
In Automations we have only Incoming web hook rule. But I want to create a Outgoing call from Jira..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Srikanth @Srikanth Vemuluri ,
were you able to make API calls from jira?
My requirement is -
When the ticket is created (with custom field value "A" and "B")> trigger API call to get value of a custom field say "C" from github.
Github has a a table -
Field1 Field2 Field3
A B C
So it the ticket created with value A and B then it should fetch C from it and update in the ticket custom field.
@Tansu Akdeniz @Srikanth Vemuluri
is this possible?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Anirudh Pratap Verma I had a similar requirement and you can use a header dot notation to extract the value and set it as a variable
{ "userId": 123 }
, you can capture this in a variable using {{webResponse.headers.userId}}userId
in the URL or body, you can insert it like so:https://api.example.com/users/{{webhookResponse.headers.userId}}/details
{"userId": "{{webResponse.headers.userId}}"}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.