Debugging Steps
Open the bridge in the editor
Switch to the Monitoring view
Find the failed invocation in the log
Click to expand β you'll see the full request, response, and error details
Common Error Types
Timeout
The bridge exceeded its execution time limit (default: 30 seconds). To fix:
Optimize your code to run faster
Increase the timeout in bridge settings (up to 15 minutes)
Break long operations into smaller steps
Runtime Error
Your code threw an unhandled exception. Check the error message and stack trace in the invocation details. Use the Test tab to reproduce and fix the issue.
Authentication Error (401/403)
The caller didn't provide a valid API key, or the API key doesn't match. Verify the caller is using the correct API key from deployment.
Rate Limited (429)
The bridge has rate limiting enabled and the caller exceeded the limit. Either increase the rate limit in settings or ask the caller to reduce request frequency.