Disable a cron job.
token
(Required)id
(Required)https://www.easycron.com/rest/disable?token=[token]&id=2107
In above example, [token] should be replaced with the true token string.
{"status":"success","cron_job_id":"2107"}
Above example response is equal to the following array:
Array ( [status] => success [cron_job_id] => 2107 )
If you use an invalid token, you may receive following error response:
{"status":"error","error":{"code":"1","message":"Wrong API token."}}
The equal readable array is:
Array ( [status] => error [error] => Array ( [code] => 1 [message] => Wrong API token. ) )
If there is something wrong with the arguments, you may receive other errors:
code: 24
message: An error occurred when disabling the cron job.
code: 25
message: The cron job ID is invalid.
If you make too much API requests in one day, you may receive following error:
code: 26
message: You have exceeded your max daily API request limit.