---
title: "List Agent Trace Plans"
method: GET
path: "/internal/agent-traces/plans/{thread_id}"
---

# List Agent Trace Plans

`GET /internal/agent-traces/plans/{thread_id}`

All plans (with outcomes) tied to a LangSmith thread.

`thread_id` maps to `agent_sessions.sdk_session_id`. Plans are joined
via `agent_session_id`; outcomes are eager-loaded so the response
carries the full audit trail in one round-trip.

## Path parameters

- `thread_id` string, required

## Headers

- `Authorization` string, nullable

## Cookies

- `session_id` string, nullable

## Response `200`

Successful Response

- AgentTraceSessionPlansResponse
  - `thread_id` string, required
  - `plans` AgentTracePlan[], required
    - `id` integer, required
    - `version` integer, required
    - `status` 'active' | 'applied' | 'partially_applied' | 'superseded' | 'canceled', required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `payload` PlanOutput, required
      - `id` string, required
      - `title` string, nullable
      - `estimated_impact` string[], required
      - `suggestions` ConvergeApiPlanSchemaSuggestion[], required
        - `id` string, required
        - `action` 'scale-up' | 'scale-down' | 'pause' | 'activate' | 'bid' | 'rename' | 'duplicate-ad' | 'duplicate-adset' | 'duplicate-campaign', required
        - `platform` 'meta', required
        - `primary_target` ChangeTarget, required
          - `scope` 'campaign' | 'adset' | 'ad', required
          - `platform_object_id` string, required
          - `name` string, required
          - `campaign_id` string, nullable
          - `campaign_name` string, nullable
          - `adset_id` string, nullable
          - `adset_name` string, nullable
        - `summary` string, required
        - `rationale` string, required
        - `reasons` Evidence[], required
          - `text` string, required
          - `polarity` 'positive' | 'negative', required
        - `confidence` number, required
        - `impact` number, required
        - `viz` Viz, required — How the FE should render data behind a Suggestion. The agent declares *which* metrics to query and *how* (date range, granularity, attribution); the FE issues the insight query and renders cards/sparkline from the result. The agent never embeds pre-computed values.
          - `primary_metric` union, required
            - EventMetricSpec
              - …
            - MarketingMetricSpec
              - …
          - `supporting_metrics` union[]
            - union
              - …
          - `since` string, date, required
          - `until` string, date, required
          - `time_granularity` 'hour' | 'day' | 'week' | 'month', required
          - `attribution` ConvergeApiPlanSchemaAttribution
            - `model` 'direct_session' | 'first_touch' | 'first_touch_paid' | 'inv_j_shaped' | 'inv_j_shaped_paid' | 'j_shaped' | 'j_shaped_paid' | 'last_touch' | 'last_touch_paid' | 'linear' | 'top_of_funnel' | 'participation' | 'u_shaped' | 'time_decay' | 'inv_time_decay', required
            - `window` integer, required
            - `mode` 'click_time' | 'conversion_time', required
        - `changes` union[], required
          - union
            - DailyBudgetChange
              - …
            - LifetimeBudgetChange
              - …
            - DailySpendCapChange
              - …
            - LifetimeSpendCapChange
              - …
            - BidAmountChange — Ad set bid/cost goal (`bid_amount`), in the account's major units. Backs Meta's `LOWEST_COST_WITH_BID_CAP` (bid cap) and `COST_CAP` (cost-per-result goal) bid strategies — both store their target in the ad-set-level `bid_amount` field, so a single change variant covers both.
              - …
            - RoasGoalChange — Ad set minimum-ROAS goal for the `LOWEST_COST_WITH_MIN_ROAS` strategy.
              - …
            - StatusChange
              - …
            - NameChange
              - …
            - DuplicateAdChange — Duplicate an existing ad into another adset reusing the source ad's creative
              - …
            - DuplicateAdsetChange — Duplicate an existing ad set — its settings and its ads. Applied by *recreating* the ad set (Meta's `/copies` can only name the copy via prefix/suffix, and name-based URL parameters freeze at first publish, so the copy must be created bearing its final name). The child ads are then duplicated into the copy reusing each source ad's creative, so post IDs carry over; the ads keep their source names and statuses.
              - …
            - DuplicateCampaignChange — Duplicate an existing campaign — its settings, ad sets, and ads. Applied by *recreating* the whole tree (see `DuplicateAdsetChange` for why `/copies` can't be used): the campaign is created bearing its final name, each ad set is recreated into it keeping its own name and status, and each ad is duplicated reusing the source ad's creative so post IDs carry over.
              - …
    - `outcomes` AgentTracePlanOutcome[], required
      - `suggestion_id` string, required
      - `decision` 'accepted' | 'rejected' | 'skipped' | 'follow_up', required — The user's verdict on a single suggestion at apply time.
      - `success` boolean, nullable, required
      - `error` string, nullable, required
      - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/runconverge/apis/fastapi.md) · [All operations](https://skmtc.dev/runconverge/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runconverge/fastapi/revisions/1452e350bd1d/schema)
