getJobs
Retrieve a paginated list of Jenkins jobs with optional parent folder filtering and configurable result limits for job management.
Instructions
Get a paginated list of Jenkins jobs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of items to return (default: 10, max: 10) | |
parentFullName | No | Full path of the parent folder (optional) | |
skip | No | Number of items to skip (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Maximum number of items to return (default: 10, max: 10)",
"type": "integer"
},
"parentFullName": {
"description": "Full path of the parent folder (optional)",
"type": "string"
},
"skip": {
"description": "Number of items to skip (default: 0)",
"type": "integer"
}
},
"type": "object"
}