Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find jenkins restful api reference? [closed]

Tags:

rest

jenkins

I am trying to integrate an external system with jenkins by REST API.

Although I have done lots of google search on its API reference, I still cannot get a full list of jenkins REST API reference.

Anybody knows about this?

like image 958
Chuck Avatar asked Sep 04 '14 09:09

Chuck


People also ask

How do I access REST API Jenkins?

Jenkins has a link to their REST API in the bottom right of each page. This link appears on every page of Jenkins and points you to an API output for the exact page you are browsing. That should provide some understanding into how to build the API URls.


2 Answers

Jenkins has a link to their REST API in the bottom right of each page. This link appears on every page of Jenkins and points you to an API output for the exact page you are browsing. That should provide some understanding into how to build the API URls.

You can additionally use some wrapper, like I do, in Python, using http://jenkinsapi.readthedocs.io/en/latest/

Here is their website: https://wiki.jenkins-ci.org/display/JENKINS/Remote+access+API

like image 86
Lovato Avatar answered Sep 29 '22 20:09

Lovato


Additional Solution: use Restul api wrapper libraries written in Java / python / Ruby - An object oriented wrappers which aim to provide a more conventionally way of controlling a Jenkins server.

For documentation and links: Remote Access API

like image 32
avivamg Avatar answered Sep 29 '22 21:09

avivamg