ActiveCampaign Template API

The Template API from ActiveCampaign — 1 operation(s) for template.

Operations 1

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/activecampaign-template-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 email required.

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

OpenAPI Specification

activecampaign-template-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: v2 Template API
  version: '3'
servers:
- url: https://{youraccountname}.api-us1.com/api/2
  variables:
    youraccountname:
      default: youraccountname
security:
- {}
tags:
- name: Template
paths:
  /template/share:
    get:
      summary: Create Shareable Campaign Template Link
      description: Create a shareable link to a campaign template
      operationId: create-shareable-campaign-template-link
      parameters:
      - name: api_key
        in: query
        description: ActiveCampaign Account API Key
        schema:
          type: string
      - name: id
        in: query
        description: The id of the campaign template to be shared
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Success:
                  value: "{\n    \"url\": \"http://tplshare.com/gXKi4s2$\",\n    \"success\": 1,\n    \"message\": \"Template shared successfully\",\n    \"result_code\": 1,\n    \"result_message\": \"Template shared successfully\",\n    \"result_output\": \"json\"\n}"
                Invalid Template ID:
                  value: "{\n    \"success\": 0,\n    \"message\": \"Invalid template\",\n    \"result_code\": 0,\n    \"result_message\": \"Invalid template\",\n    \"result_output\": \"json\"\n}"
              schema:
                oneOf:
                - title: Success
                  type: object
                  properties:
                    url:
                      type: string
                      example: http://tplshare.com/gXKi4s2$
                    success:
                      type: integer
                      example: 1
                      default: 0
                    message:
                      type: string
                      example: Template shared successfully
                    result_code:
                      type: integer
                      example: 1
                      default: 0
                    result_message:
                      type: string
                      example: Template shared successfully
                    result_output:
                      type: string
                      example: json
                - title: Invalid Template ID
                  type: object
                  properties:
                    success:
                      type: integer
                      example: 0
                      default: 0
                    message:
                      type: string
                      example: Invalid template
                    result_code:
                      type: integer
                      example: 0
                      default: 0
                    result_message:
                      type: string
                      example: Invalid template
                    result_output:
                      type: string
                      example: json
      deprecated: false
      tags:
      - Template
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: false
x-readme-fauxas: true