Delete the cron schedule for an automation to stop automatic executions.
DELETEhttps://api.aitronos.com/v1/streamline/automations/{automation_id}/schedule
Authorization string required
automation_id string required
Returns 204 No Content on successful deletion. No response body is returned.
Bash
- Bash
- Python
- JavaScript
curl -X DELETE "https://api.aitronos.com/v1/streamline/automations/sauto_daily_report/schedule" \
-H "Authorization: Bearer $FREDDY_SESSION_TOKEN"Response:
{
"success": true,
"message": "Schedule removed successfully"
}