JIRA notifications

Vyshnavi Bandarupalli January 23, 2019

When There is any update regarding issues in My Project I need to send a response to my API. Does Webhook support to send response to code but not the website If not is there any way to do ?

1 answer

1 accepted

0 votes
Answer accepted
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 23, 2019

Hello,

I am not sure what you mean by "send a response to code". You would need to develop a web application with a rest endpoint, which would accept a webhook call. In this case a webhook can send a request to your application.

Vyshnavi Bandarupalli January 23, 2019

I need to get response to one of the Django API

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 23, 2019

Django  is a framework to create a web server, then if you create a rest endpoint, which would accept rest calls, then you use a webhook to send a request.

Vyshnavi Bandarupalli January 24, 2019

To create a webhook  :

               My url is http:/n.n.n.n:8000. But WebHooks can only use standard http and https ports (80 or 443). Is there any other way ?

Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 24, 2019

Hello,

In this case I can see two options:

1. You write your own plugin for Jira with a listener and call your rest endpoint from this plugin

2. You put a proxy for you rest endpoint. This proxy should work on 80 or 443 and this proxy will redirect all requests to your port.

Suggest an answer

Log in or Sign up to answer