Jobs /
Get jobs list
Gets a list of jobs belonging to the project
URL parameters
project
string required
ID of the project
Response attributes
object
jobs
array required
An array of job objects.
object
appId
string required
Full identifier used for job deployment
name
string required
Job name
description
string
A short description of the job
internalId
string required
Identifier for the job
jobType
string required
Type of the job (normal or cron)
disabledCI
boolean required
Whether Continuous Integration is disabled
disabledCD
boolean required
Whether Continuous Deployment is disabled
API
CLI
GET /v1beta/projects/{project}/jobs
Example response
200 OK
A list of jobs belonging to the project.
JSON
{
"jobs": [
{
"appId": "/example-user/default-project/example-job",
"name": "Example Job",
"description": "This is the job description",
"internalId": "example-job",
"jobType": "cron",
"disabledCI": false,
"disabledCD": false
}
]
}