Skip to main content

Overview

Intuned provides full visibility into your automation Runs. See what parameters were used, what results came back, and what failed. Track executions at three levels:
  • Runs: Individual API executions with inputs, outputs, and status
  • Attempts: Each retry within a Run, with logs and traces
  • JobRuns: Batch executions containing multiple Runs

View Run records

Every time you execute an API in Intuned, a Run record is created. A Run represents a single logical execution and tracks:
  • Input parameters and configuration (timeouts, retries, auth settings)
  • Execution status and timing
  • Output results or error details
  • All retry attempts made during execution
Screenshot of the Runs table showing multiple Run records with status, duration, and error columns
  1. Find the Runs table in the Runs section of the project dashboard
  2. Each Run row shows a single API execution with its status, timing, duration, and more
  3. Scan failed Runs by checking the status and the related error/reason column. Check more about error types in our error code reference
  4. Use the filters at the top to narrow down Runs by status, date range, job, API, and more
Use the Run ID to fetch Run details programmatically via the Run result API.

View Run details

Click any Run record from the table to open the Run details page. This page shows details about that specific API execution. Screenshot of Run details page showing metadata, input/output panels, and attempts timeline
  1. Metadata section: Displays the Run’s ID, status, duration, timing, associated Job and AuthSession (if any), and API name
  2. Input/Output section: Split into two panels, this section shows the input parameters used for the Run on the left and the output results on the right. You can switch between different tabs to view results, extended payloads, errors, and more
  3. Attempts Timeline: This visual timeline shows all attempts made for this Run, including their statuses, durations, and timestamps. Click any attempt to view more details, including logs and traces. Learn more about the attempts and dependencies execution model.

Runs with AuthSession

When a Run is configured to use an AuthSession, you’ll notice additional fields and behaviors in the Run details page Screenshot of Run details page with AuthSession field highlighted in metadata and dependency shown in timeline
  1. AuthSession field in the Metadata section indicates which AuthSession was used for this Run
  2. AuthSession:Validate dependency appears in the Attempts Timeline before each API attempt to ensure the session is valid. Click it to view its own Run details. Learn more about AuthSession.

Inspect Run attempts

Each Run can have multiple Attempts, especially if retries are enabled or if there are dependencies involved (like AuthSessions). Each attempt represents a single try to execute the API automation. Screenshot of Run attempts timeline showing multiple attempt entries with status and duration
  1. View the attempt entry in the Attempts Timeline, showing API name, status, duration, and timestamp
  2. Click an attempt to view detailed input parameters and output results
  3. Access logs and traces for debugging and analysis

Debug failed attempts with traces

Screenshot of Playwright trace viewer showing step-by-step browser session replay with network and DOM inspection tools When an attempt fails:
  1. Select View Trace for the failed attempt to open Playwright’s trace viewer
  2. Replay the browser session step-by-step
  3. Check if a bot detection mechanism was triggered
  4. Inspect network requests to see if any resources failed to load
  5. Check DOM snapshots to understand the page state at each step
  6. Analyze failed selectors or actions that caused the error

Monitor JobRuns

In addition to individual API Run records, Intuned provides a way to visualize and monitor the execution of entire Jobs through JobRun records. A JobRun represents a single execution of a Job. It may include multiple API Runs. Learn more about Jobs.

View JobRun details

Navigate to the Jobs section within your project. You’ll see a list of all your defined Jobs. Click any Job to view its details. Animation showing navigation to Jobs section and opening a JobRun details page For each Job details page, you can view the job configuration, schedule, and more. You can also:
  • Edit the Job configuration
  • Trigger a JobRun manually
  • Pause or resume scheduled executions
Below, view the JobRuns with a detailed summary of all payloads executed. Screenshot of JobRun details showing summary information and filterable list of API Runs For each JobRun, you can see:
  1. A detailed section with all JobRun information like status, start time, duration, summary of payloads executed, and more
  2. A filterable list of all the API Runs that were part of this JobRun, including their statuses, durations, and timestamps
  3. For each API Run within the JobRun, you can click on it to view its own Run details, with the result and parameters of this specific execution