Re: Seeking information about create API for Action

2019-05-26 Thread Oleg Nenashev
See the following links: https://wiki.jenkins.io/plugins/servlet/mobile?contentId=36602857#content/view/36602857 https://jenkins.io/doc/developer/handling-requests/routing/ There are also many examples in the code On Sun, May 26, 2019, 09:39 selva vignesh wrote: > Hi Oleg, > In Jenkins we

Re: Seeking information about create API for Action

2019-05-26 Thread selva vignesh
Hi Oleg, In Jenkins we have an API to call the build, job details as Json response. The same i want to create API for my plugin. How can I achieve this. Can you please share the details On Fri, 24 May 2019 at 11:50 AM, Oleg Nenashev wrote: > Hi, > > It is not clear what is the request here. Do

Re: Seeking information about create API for Action

2019-05-24 Thread Oleg Nenashev
Hi, It is not clear what is the request here. Do you want to add Java API, or is it about REST API? It might also help if you share your current code. BR, Oleg On Wednesday, May 22, 2019 at 8:40:02 AM UTC+2, selva vignesh wrote: > > Hi, >I want create API action for my global configuration

Seeking information about create API for Action

2019-05-22 Thread selva vignesh
Hi, I want create API action for my global configuration instead of configuring from UI. Case : I have create GlobalConfiguration for my plugin and config.jelly. I would like to add API for the same class. When trigger the API with mentioned Param, class should get invoked. Can anyone