Jenkins ​
Manage jobs, trigger builds, and monitor queues with the Jenkins API.
| Detail | Value |
|---|---|
| Category | CI/CD |
| Base URL | https://jenkins.example.com |
| Authentication | Bearer Token |
| Endpoints | 8 |
| Connector key | jenkins |
Using Jenkins in a workflow ​
- Go to Connections and click New Connection.
- Pick Jenkins from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET /api/json | Get Jenkins info |
| GET /job/{name}/api/json | Get job details |
| POST /job/{name}/build | Trigger a build |
| POST /job/{name}/buildWithParameters | Trigger parameterized build |
| GET /job/{name}/{number}/api/json | Get build details |
| GET /job/{name}/{number}/consoleText | Get build console output |
| POST /job/{name}/{number}/stop | Stop a build |
| GET /queue/api/json | Get build queue |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.