View the truncated output of a specific log ID.
token
(Required)id
(Required)log_id
(Required)https://www.easycron.com/rest/log?token=[token]&id=2107&log_id=5a732996d6f8c907fc113ff1
In above example, [token] should be replaced with the true token string.
{"status":"success","truncated_output":"cron job successfully done."}
Above example response is equal to the following array:
Array ( [status] => success [truncated_output] => cron job successfully done. )
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 error:
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.
code: 27
message: The log ID is invalid.