- Introduction
- Auth
- Bolts
- Environments
- Git
- Domains
- Logs
- List Environments
- Create Environment
- Get Environment
- Update Environment
- Delete Environment
- Purge Environment Cache
- List Environment Cronjobs
- Get Environment Statistics
- Get Environment Available Settings
- Get Environment PHP Versions
- Get Environment Usage
- Get Environment SSH Accesses
- Create Environment SSH Access
- Remove Environment SSH Access
- List Environment Databases
- Toggle Environment Dev Mode
- Environment Install Wordpress
- Environment Optimize Wordpress
- Locations
- Databases
- Cronjobs
- SSH Keys
- Certificates
- Billing
- Profile
List Cronjobs
GET
https://api.servebolt.io/v1/cronjobs
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Accept
string
required
Example:
application/json
Content-Type
string
required
Example:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.servebolt.io/v1/cronjobs' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
🟢200OK
application/json
Body
data
array [object {5}]
required
type
string
required
id
string
required
attributes
object
required
relationships
object
required
links
object
required
Example
{
"data": [
{
"type": "cronjobs",
"id": "271",
"attributes": {
"active": true,
"disabled": false,
"command": "flock -n ~/.wp_cron.lock wp cron event run --due-now --path=/cust/0/wefwef_8988/testyx_1760/site/public --quiet",
"comment": "Generated by Servebolt Optimizer (name=wp-cron-single-site,rev=1)",
"schedule": "0,5,10,15,20,25,30,35,40,45,50,55 * * * *",
"notifications": "none"
},
"relationships": {
"environment": {
"links": {
"related": "https://xxx/v1/environments/1760"
},
"data": {
"type": "environments",
"id": "1760"
}
}
},
"links": {
"self": "https://xxx/v1/cronjobs/271"
}
},
{
"type": "cronjobs",
"id": "265",
"attributes": {
"active": true,
"disabled": false,
"command": "flock -n ~/.wp_cron.lock wp cron event run --due-now --path=/cust/0/pepepe_8967/testop_1731/site/public --quiet",
"comment": "Generated by Servebolt Optimizer (name=wp-cron-single-site,rev=1)",
"schedule": "0,5,10,15,20,25,30,35,40,45,50,55 * * * *",
"notifications": "none"
},
"relationships": {
"environment": {
"links": {
"related": "https://xxx/v1/environments/1731"
},
"data": {
"type": "environments",
"id": "1731"
}
}
},
"links": {
"self": "https://xxx/v1/cronjobs/265"
}
}
]
}
Modified at 2024-05-29 10:04:41