Agile CRM Campaigns API

The Campaigns API from Agile CRM — 2 operation(s) for campaigns.

Operations 3

POST /api/campaigns/enroll/email Add a contact to a campaign #
GET /api/workflows List campaigns (workflows) #
DELETE /api/workflows/remove-active-subscriber/{workflowId}/{contactId} Remove contact from a campaign workflow #

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/agile-crm-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

agile-crm-campaigns-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Agile CRM REST Campaigns API
  version: 1.0.0
  description: HTTPS-only REST API for managing contacts, companies, deals (opportunities), campaigns, tasks, events, notes, tracks, tickets, and documents in Agile CRM. Authentication is HTTP Basic with account email as username and REST client API key as password.
  contact:
    name: Agile CRM
    url: https://www.agilecrm.com/api
servers:
- url: https://{domain}.agilecrm.com/dev
  description: Tenant-scoped base URL
  variables:
    domain:
      default: mydomain
      description: Your Agile CRM tenant subdomain
security:
- BasicAuth: []
tags:
- name: Campaigns
paths:
  /api/campaigns/enroll/email:
    post:
      tags:
      - Campaigns
      summary: Add a contact to a campaign
      responses:
        '200':
          description: Contact enrolled
      operationId: enrollContactInCampaign
  /api/workflows:
    get:
      tags:
      - Campaigns
      operationId: listCampaigns
      summary: List campaigns (workflows)
      description: 'Returns a list of campaigns. Paging can be applied using the page_size and cursor query parameters. Source: https://github.com/agilecrm/rest-api README section 8.'
      parameters:
      - name: page_size
        in: query
        required: false
        schema:
          type: integer
      - name: cursor
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Campaign list
  /api/workflows/remove-active-subscriber/{workflowId}/{contactId}:
    delete:
      tags:
      - Campaigns
      summary: Remove contact from a campaign workflow
      parameters:
      - name: workflowId
        in: path
        required: true
        schema:
          type: string
      - name: contactId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Removed
      operationId: removeCampaignSubscriber
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
      description: HTTP Basic auth - username is account email, password is REST client API key.