getJob
Retrieve detailed information about Jenkins jobs including build status, configuration, and execution history for monitoring and automation workflows.
Instructions
Get information about a Jenkins job
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jobFullName | Yes | Full path of the Jenkins job |
Input Schema (JSON Schema)
{
"properties": {
"jobFullName": {
"description": "Full path of the Jenkins job",
"type": "string"
}
},
"required": [
"jobFullName"
],
"type": "object"
}