Hosting: Cron Jobs
List account cron jobs
Returns the list of cron jobs configured for the specified account, including their schedule and command.
get/api/hosting/v1/accounts/{username}/cron-jobs
Path parameters
usernamestring required
Example:u123456789
Response
Success response
Example response
[
{
"uid": "cron_abc123",
"username": "u123456789",
"time": "0 2 * * *",
"command": "php /home/u123456789/cleanup.php"
}
]