Custom Jira Plugin Creation

I am trying to create a post workflow plugin which will work in the following manner -
when some issue is moved from ‘in-progress’ to ‘done’ or ‘to-do’ to ‘done’, my plugin should call an external api to send issue Id and status…But I am not able to understand how can I get the data in post-workfow plugin .

Thanks in advance

You are not able to get what data?

I want issue Id , issue status (to-do, in-progress or done) ,assignee, time of the status change

You can look for generic event. In normal Jira, all the transitions fire generic event.
Then you can get all the information using the event object.

I would look at perhaps using a Webhook: Managing webhooks | Administering Jira applications Data Center and Server 7.3 | Atlassian Documentation

1 Like