Skip to main content

List Integrations

GET 

/api/integrations

List integrations with optional filtering.

Query Parameters:

  • category: Filter by integration category (phone, email, crm, etc)
  • include_categories: Comma-separated list of categories to include (e.g., 'social,ads,calendar,crm')
  • exclude_categories: Comma-separated list of categories to exclude (e.g., 'phone_number,email,internal_component')
  • types: Filter by specific integration types
  • status: Filter by status (active, inactive, error)
  • is_active: Filter by active status (true for active only, false for inactive)
  • search: Search by name, type, or provider
  • limit: Maximum number of results
  • offset: Number of results to skip

Sample API Calls:

  1. Get all integrations except communication channels: GET /api/integrations?exclude_categories=phone_number,email,internal_component

  2. Get only social and CRM integrations: GET /api/integrations?include_categories=social,crm

  3. Search for Stripe integrations: GET /api/integrations?search=stripe

  4. Get active CRM integrations: GET /api/integrations?category=crm&status=active

Request

Responses

Successful Response