Nextiva Campaigns API

The Campaigns API from Nextiva — 1 operation(s) for campaigns.

Operations 1

GET /analytics/api/campaigns/{campaignId}/recentconversationworkitems Fetch recent conversation workitems for a campaign #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nextiva-campaigns-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nextiva-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conversation Campaigns API
  version: 1.0.0
  description: API for managing and retrieving conversation data.
servers:
- url: https://api.nextiva.com
  description: Nextiva API Base URL
security:
- bearerAuth: []
tags:
- name: Campaigns
paths:
  /analytics/api/campaigns/{campaignId}/recentconversationworkitems:
    get:
      summary: Fetch recent conversation workitems for a campaign
      operationId: fetchConversationByCampaignId
      tags:
      - Campaigns
      description: 'Fetches conversations associated with a specific campaign ID. This endpoint allows filtering conversations by various criteria such as archived status, call types, and mentions.

        '
      parameters:
      - in: path
        name: campaignId
        schema:
          type: string
        required: true
        description: Unique identifier of the campaign.
      - in: query
        name: archived
        schema:
          type: boolean
        description: Filter archived conversations.
      - in: query
        name: calls
        schema:
          type: boolean
        description: Filter calls.
      - in: query
        name: conversationType
        schema:
          type: string
          enum:
          - contact_based
          - shared_inbox_internal
          - internal_chat
          - channel
        description: Filter by conversation type.
      - in: query
        name: draft
        schema:
          type: boolean
        description: Filter draft conversations.
      - in: query
        name: inboundCalls
        schema:
          type: boolean
        description: Filter inbound calls.
      - in: query
        name: latest
        schema:
          type: boolean
        description: Filter latest conversations.
      - in: query
        name: limit
        schema:
          type: integer
          format: int32
          default: 100
        description: Number of items to return.
      - in: query
        name: mentioned
        schema:
          type: boolean
        description: Filter messages that have mentions.
      - in: query
        name: messages
        schema:
          type: boolean
        description: Filter messages.
      - in: query
        name: missedCalls
        schema:
          type: boolean
        description: Filter missed calls.
      - in: query
        name: offset
        schema:
          type: integer
          format: int32
          default: 0
        description: Offset for pagination.
      - in: query
        name: outboundCalls
        schema:
          type: boolean
        description: Filter outbound calls.
      - in: query
        name: read
        schema:
          type: boolean
        description: Filter read messages.
      - in: query
        name: scope
        schema:
          type: string
          enum:
          - INTERNAL
          - EXTERNAL
        description: Filter by scope.
      - in: query
        name: totalUnread
        schema:
          type: boolean
        description: Include unread count for each conversation.
      - in: query
        name: voicemails
        schema:
          type: boolean
        description: Filter voicemails.
      - in: query
        name: workitem
        schema:
          type: string
        description: Filter by workitem ID.
      responses:
        '200':
          description: A paginated list of conversations related to a campaign.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversationsResponse'
        default:
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Workitem:
      type: object
      properties:
        workitemId:
          type: string
          description: Unique identifier for the workitem.
    PaginatedResponse:
      type: object
      properties:
        count:
          type: integer
          format: int32
          description: Number of objects in the current page.
        total:
          type: integer
          format: int32
          description: Total number of objects matching the criteria.
        objects:
          type: array
          items:
            type: object
          description: Array of objects.
    ConversationsResponse:
      allOf:
      - $ref: '#/components/schemas/PaginatedResponse'
      - type: object
        properties:
          objects:
            type: array
            items:
              $ref: '#/components/schemas/Workitem'
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string