---
title: "List call actions"
method: GET
path: "/call-actions"
tags: ["Call Actions"]
---

# List call actions

`GET /call-actions`

Returns a paginated list of call actions for the organization, filtered by agent. Optionally filter by category or provider.

## Query parameters

- `agentId` string, required
- `page` integer
- `limit` integer
- `category` 'trigger' | 'post-call'
- `provider` string

## Response `200`

Paginated list of call actions

- object
  - `success` boolean
  - `data` object
    - `callActions` CallAction[]
      - `_id` string — MongoDB ObjectId
      - `organization` string — Organization ObjectId
      - `agentId` string — Agent ObjectId this action belongs to
      - `category` 'trigger' | 'post-call' — When the action fires
      - `provider` string — Integration provider (e.g. `hubspot`, `salesforce`)
      - `action_type` 'create' | 'update' — The operation performed on the provider object
      - `object` string — Provider object type (e.g. `contact`, `deal`)
      - `config` object
        - `phoneNumberFieldName` string — Provider field that contains the phone number (required for `trigger` actions)
        - `conditions` CallActionCondition[]
          - `field` string, required — Provider record field name
          - `operator` 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'contains' | 'notContains' | 'startsWith' | 'endsWith', required — Comparison operator
          - `value` string, required — Value to compare against
        - `body` string — Request body template or payload for the provider action
      - `createdAt` string, date-time
      - `updatedAt` string, date-time
    - `totalCount` number
    - `page` number
    - `limit` number

## Other responses

- `400` — Invalid input
- `401` — Unauthorized access
- `500` — Internal server error

---

[API](https://skmtc.net/smallest-inc/apis/agent-management-api.md) · [All operations](https://skmtc.net/smallest-inc/apis/agent-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smallest-inc/agent-management-api/revisions/c2d0eb64b01a/schema)
