---
title: "List Agents"
method: GET
path: "/v2/teams/{teamId}/agents"
tags: ["Agents"]
---

# List Agents

`GET /v2/teams/{teamId}/agents`

List agents for your team.

## Path parameters

- `teamId` string, required

## Query parameters

- `include_schedules` 'true' | 'false'
- `limit` integer
- `offset` integer
- `automation_id` string, uuid

## Response `200`

Default Response

- object
  - `agents` object[], required
    - `id` string, uuid, required
    - `name` string, required
    - `slack_enabled` boolean, nullable, required
    - `microsoft_teams_enabled` boolean, nullable, required
    - `agentic_memory_enabled` boolean, nullable, required
    - `team_id` string, nullable, required
    - `thread_id` string, nullable, required
    - `folder_id` string, nullable
    - `automation_id` string, uuid, nullable
    - `created_at` string, nullable, required
    - `updated_at` string, nullable, required
    - `created_by` object, nullable
      - `id` string, required
      - `name` string, nullable, required
      - `email` string, required
    - `updated_by` object, nullable
      - `id` string, required
      - `name` string, nullable, required
      - `email` string, required
    - `pinned_at` string, nullable, required
    - `last_run_at` string, nullable, required
    - `latest_build` object, nullable, required
      - `id` string, uuid, required
      - `copilot_id` string, uuid, required
      - `agent_id` string, uuid, required
      - `name` string, required
      - `revision_name` string, nullable
      - `revision_description` string, nullable
      - `config` union, required
        - object
          - `version` 'v1', required
          - `data` object, required
            - `model` string, required
            - `temperature` number, nullable
            - `max_output_tokens` number, nullable
            - `top_p` number, nullable
            - `store` boolean, nullable
            - `tools` unknown, required
            - `input` union, required
              - …
            - `text` object, nullable
              - …
            - `files` string[], nullable, required
            - `skills` string[], nullable, required
        - object
          - `version` 'v2', required — Schema version discriminator — must be "v2" for the current schema
          - `data` object, required — Agent configuration payload
            - `models` object, required — Model configuration for each capability the agent uses
              - …
            - `input` union, required — Initial agent instructions — either a single system prompt string or a list of structured messages
              - …
            - `files` string[], nullable, required — IDs of team files that should be available to the agent
            - `skills` string[], nullable, required — IDs of skills (team or system) that should be available to the agent
            - `plugins` string[], nullable, required — Plugins to load — either a built-in plugin name (e.g. "code-review") or a GitHub URL (e.g. "https://github.com/owner/repo")
            - `subAgents` string[], nullable, required — IDs of other agents (in the same team) to expose to this agent as Claude Code subagents. Each sub-agent runs with its own AOP and connections; the parent can delegate to them via the Agent tool.
            - `options` object — Optional runtime options controlling how the agent executes
              - …
      - `status` string, nullable, required
      - `revision_number` number, nullable, required
      - `parent_build_id` string, nullable, required
      - `created_by` string, nullable, required
      - `created_by_name` string, nullable
      - `created_at` string, nullable, required
      - `updated_at` string, nullable, required
      - `schedules` object[]
        - `id` string, required
        - `build_id` string, required
        - `agent_id` string, required
        - `user_id` string, required
        - `enabled` boolean, required
        - `frequency` 'every_5_minutes' | 'every_15_minutes' | 'hourly' | 'daily' | 'workday' | 'weekly' | 'monthly' | 'custom', required
        - `time` string, nullable, required
        - `timezone` string, required
        - `day` string, nullable, required
        - `day_of_month` number, nullable, required
        - `cron` string, nullable, required
        - `source` string, nullable, required
        - `task` string, nullable, required
        - `recurring` boolean, nullable, required
        - `auto_disabled_at` string, nullable, required
        - `auto_disabled_reason` string, nullable, required
        - `consecutive_missing_connection_failures` integer, required
        - `first_missing_connection_failure_at` string, nullable, required
        - `last_missing_connection_failure_at` string, nullable, required
        - `created_at` string, required
        - `updated_at` string, required
        - `user_name` string, nullable
        - `user_email` string, nullable
    - `integration_configs` object[], required
      - `id` string, required
      - `integration_id` string, required
      - `integration_type` string, required
      - `integration_name` string, required
      - `created_at` string, required
      - `icon_url` string, nullable
      - `is_connected` boolean
      - `linked_queue_names` string[], nullable
    - `user_triggers` object, required
      - `slack_mention` boolean, required
      - `slack_channel` boolean, required
      - `teams_mention` boolean, required
    - `case_trigger_enabled` boolean, required
    - `case_trigger_has_conflict` boolean, required
    - `case_trigger_conflicting_agents` object[], required
      - `id` string, required
      - `name` string, required
    - `case_queue_name` string, nullable, required
  - `total` integer, required
  - `limit` integer, required
  - `offset` integer, required

## Other responses

- `400` — Default Response
- `401` — Default Response
- `500` — Default Response

---

[API](https://skmtc.net/duvo/apis/duvo-public-api.md) · [All operations](https://skmtc.net/duvo/apis/duvo-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/duvo/duvo-public-api/revisions/dafcf3d868a9/schema)
