Error Structure
All errors in the Intuned system follow a standardized structure with the following fields:code- Stable, machine-readable error identifiercategory- Broad classification for retry/alert rulesmessage- Human-readable description of the errorretriable- Boolean indicating if the operation can be retrieddoc_url- Optional link to documentation for this errorcorrelation_id- Optional ID for tracing the error in logsdetails- Optional additional context specific to the error
Error Categories
infrastructure
Internal system errors within the Intuned platform infrastructure. These are typically retriable and indicate temporary issues with the service.
execution
Errors that occur during script or automation execution.
auth
Authentication and authorization related errors. For more information about auth sessions, see the auth sessions overview.
user
Errors caused by invalid user input or client-side issues. These are typically not retriable without correcting the input.
billing
Billing and credit-related errors that prevent operations from proceeding due to account limitations. For more information about pricing and credits, see our pricing page.
Script Execution Error Codes
script-execution-exception
An error occurred while running the browser automation script. this usually happen when the automation throw an un-handled exception.
script-no-valid-output-received
The browser automation finished, but no valid output was received from the script. This happens if the result should be in a specific format, but the automation returned an invalid output.t
result-too-big-error
The result returned from the browser automation exceeds the 2 MB size limit. This usually happens when the script returns large fields such as raw HTML, Markdown, or long text blobs. Reduce the payload by truncating long strings, extracting only the fields you need, or processing results in smaller batches. For large content that must be preserved, upload it with uploadFileToS3 and return the resulting reference URL instead of inlining the content in the API response.