{
  "info": {
    "name": "ActiveCampaign — mcp.ai",
    "description": "REST API for the ActiveCampaign MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/active_campaign",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "active_campaign_add_browse_session_cart",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/browse/session/cart",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "browse",
            "session",
            "cart"
          ]
        },
        "description": "Set a browse session to have addedToCart flag set to true in ActiveCampaign. This action updates an existing browse session or creates a new one with the addedToCart flag enabled for the specified ema",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"legacy_connection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_contact_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact",
            "note"
          ]
        },
        "description": "Add a note to a contact in ActiveCampaign. The note will be associated with a contact as a subscriber type. The tool will first find the contact ID using the provided email address and then create the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"contact_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_contact_to_automation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact/to/automation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact",
            "to",
            "automation"
          ]
        },
        "description": "Adds an existing ActiveCampaign contact to a specific automation workflow. This action enrolls a contact in an automation by their email address. The contact must already exist in ActiveCampaign, and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"automation_id\": \"\",\n  \"contact_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_contact_to_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/contact/to/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "contact",
            "to",
            "list"
          ]
        },
        "description": "Tool to add a contact to a list in ActiveCampaign. Use when you need to subscribe or unsubscribe a contact to/from a specific list using their IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list\": 0,\n  \"status\": 0,\n  \"contact\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "custom",
            "field"
          ]
        },
        "description": "Tool to add a new custom field in ActiveCampaign. Use when you need to create a custom contact field to store additional information like industry, company size, or other custom data points. Supports ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cols\": 0,\n  \"rows\": 0,\n  \"type\": \"\",\n  \"group\": 0,\n  \"title\": \"\",\n  \"options\": \"\",\n  \"perstag\": \"\",\n  \"visible\": 0,\n  \"descript\": \"\",\n  \"ordernum\": 0,\n  \"isrequired\": 0,\n  \"show_in_list\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_custom_field_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/custom/field/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "custom",
            "field",
            "options"
          ]
        },
        "description": "Tool to add custom field options in bulk to ActiveCampaign. Use when you need to create multiple options for dropdown, radio, checkbox, or listbox custom fields. The field must already exist before ad",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fieldOptions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_custom_field_to_field_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/custom/field/to/field/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "custom",
            "field",
            "to",
            "field",
            "group"
          ]
        },
        "description": "Tool to add a custom field to a field group in ActiveCampaign. Use when you need to associate a custom field with a display group to organize related fields together on contact or deal pages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rel_id\": 0,\n  \"group_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_domain_to_white_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/domain/to/white/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "domain",
            "to",
            "white",
            "list"
          ]
        },
        "description": "Add a domain to ActiveCampaign's site tracking whitelist. Use this to enable site tracking functionality for specific domains in your ActiveCampaign account. This action registers a domain that is all",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_field_relationship",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/field/relationship",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "field",
            "relationship"
          ]
        },
        "description": "Add a field relationship in ActiveCampaign. Use this to associate a custom field with a list or other entity, enabling the field to be used within that context.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": 0,\n  \"relid\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_secondary_contact_to_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/secondary/contact/to/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "secondary",
            "contact",
            "to",
            "deal"
          ]
        },
        "description": "Adds a secondary contact to an existing deal in ActiveCampaign. Secondary contacts are additional team members associated with a deal beyond the primary contact. You can optionally specify a job title",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"deal_id\": 0,\n  \"job_title\": \"\",\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_add_tag_to_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/tag/to/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "tag",
            "to",
            "contact"
          ]
        },
        "description": "Tool to add a tag to a contact in ActiveCampaign. Use when you need to directly associate a tag with a contact using their IDs. Both contact ID and tag ID must already exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"contact\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_a_deal_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/deal/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "deal",
            "note"
          ]
        },
        "description": "Tool to create a note for a specific deal in ActiveCampaign. Use when you need to add documentation, comments, or important information to a deal record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"note\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_a_tag2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/a/tag2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "a",
            "tag2"
          ]
        },
        "description": "Tool to create a new tag in ActiveCampaign with explicit tag type specification. Use when you need to create a tag with a specific type (contact or template).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"tag_type\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account"
          ]
        },
        "description": "Creates a new account in ActiveCampaign. An account represents a business or organization that you want to track in your CRM. Each account must have a unique name. Required: account name Optional: acc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": 0,\n  \"fields\": \"\",\n  \"accountUrl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_account_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account",
            "contacts"
          ]
        },
        "description": "Tool to create a new account-contact association in ActiveCampaign. Use when you need to link an existing contact to an existing account, optionally specifying the contact's job title at that account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": 0,\n  \"contact\": 0,\n  \"jobTitle\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_account_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Creates a custom field value for an account in ActiveCampaign. Use when you need to set or add a custom field value to an existing account. Requires the account ID and custom field ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fieldValue\": \"\",\n  \"customFieldId\": 0,\n  \"fieldCurrency\": \"\",\n  \"customerAccountId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_account_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Tool to create a new account custom field metadata in ActiveCampaign. Use when you need to define a new custom field for accounts. After creating the field, you must call the Add Custom Field to Field",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"accountCustomFieldMetum\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_account_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/account/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "account",
            "note"
          ]
        },
        "description": "Tool to create a new note for an account in ActiveCampaign. Use when you need to add notes or comments to a specific account. The note will be associated with the account specified by the account ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"note\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "address"
          ]
        },
        "description": "Tool to create a new address in ActiveCampaign. Use when you need to add a company address for campaigns, forms, or other communications. Requires company name, primary address, and country code.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zip\": \"\",\n  \"city\": \"\",\n  \"state\": \"\",\n  \"country\": \"\",\n  \"allgroup\": \"\",\n  \"district\": \"\",\n  \"address_1\": \"\",\n  \"address_2\": \"\",\n  \"company_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_an_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/an/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "an",
            "order"
          ]
        },
        "description": "Tool to create an e-commerce order in ActiveCampaign. Use when you need to record a purchase or transaction for e-commerce tracking and automation triggers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"source\": 0,\n  \"currency\": \"\",\n  \"orderUrl\": \"\",\n  \"orderDate\": \"\",\n  \"taxAmount\": 0,\n  \"customerid\": 0,\n  \"externalid\": \"\",\n  \"totalPrice\": 0,\n  \"orderNumber\": \"\",\n  \"connectionid\": 0,\n  \"abandonedDate\": \"\",\n  \"orderProducts\": \"\",\n  \"discountAmount\": 0,\n  \"shippingAmount\": 0,\n  \"shippingMethod\": \"\",\n  \"externalcheckoutid\": \"\",\n  \"externalCreatedDate\": \"\",\n  \"externalUpdatedDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_bulk_account_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/bulk/account/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "bulk",
            "account",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Tool to bulk create custom field values for accounts in ActiveCampaign. Use when you need to set multiple custom field values across one or more accounts in a single request. Note: This endpoint updat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"accountCustomFieldData\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_calendars",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/calendars",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "calendars"
          ]
        },
        "description": "Tool to create a new calendar feed in ActiveCampaign. Use when you need to create a calendar feed that syncs with external calendar applications like Google Calendar or Outlook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"title\": \"\",\n  \"notification\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "campaign"
          ]
        },
        "description": "Tool to create a new campaign in ActiveCampaign. Use when you need to create a broadcast email campaign or automation campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_child_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/child/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "child",
            "schema"
          ]
        },
        "description": "Tool to create a child schema in ActiveCampaign. Use when you need to create a child schema for a parent schema. Parent/child schemas allow multiple customers to share the same schema, useful for rese",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"parent_schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "connection"
          ]
        },
        "description": "Tool to create a new connection in ActiveCampaign. Use when you need to establish a link between an ActiveCampaign account and an external service or application.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"linkUrl\": \"\",\n  \"logoUrl\": \"\",\n  \"service\": \"\",\n  \"externalid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_contact_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact",
            "task"
          ]
        },
        "description": "Create a task associated with a contact in ActiveCampaign. This action allows you to create a new task that will be associated with a specific contact in your ActiveCampaign account. The task can incl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"edate\": \"\",\n  \"relid\": 0,\n  \"title\": \"\",\n  \"status\": 0,\n  \"duedate\": \"\",\n  \"assignee\": 0,\n  \"dealTasktype\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "customer"
          ]
        },
        "description": "Tool to create an e-commerce customer in ActiveCampaign. Use when you need to register a new customer from your e-commerce platform for tracking purchases and automations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"externalid\": \"\",\n  \"connectionid\": 0,\n  \"acceptsMarketing\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_deal_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deal/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deal",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Tool to create a new deal custom field metadata in ActiveCampaign. Use when you need to define a new custom field for deals. After creating the field, you must call the Add Custom Field to Field Group",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dealCustomFieldMetum\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_deal_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deal/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deal",
            "pipeline"
          ]
        },
        "description": "Creates a new deal pipeline in ActiveCampaign. A deal pipeline is a visual representation of your sales process that helps organize and track deals through different stages. When you create a new pipe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"users\": \"\",\n  \"allusers\": 0,\n  \"currency\": \"\",\n  \"allgroups\": 0,\n  \"autoassign\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_deal_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deal/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deal",
            "role"
          ]
        },
        "description": "Tool to create a new deal role in ActiveCampaign. Use when you need to define roles that contacts can have in deals, such as Decision Maker, Influencer, or Head of Sales.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_deal_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deal/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deal",
            "stage"
          ]
        },
        "description": "Tool to create a new stage in an ActiveCampaign deal pipeline. Use when you need to add a custom stage to organize deals in a specific pipeline.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group\": 0,\n  \"order\": 0,\n  \"title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_deal_task_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/deal/task/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "deal",
            "task",
            "type"
          ]
        },
        "description": "This tool creates a new deal task type in ActiveCampaign. Deal task types are used to categorize and organize tasks associated with deals, and they are an important feature for maintaining a structure",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"status\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_duplicate_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/duplicate/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "duplicate",
            "campaign"
          ]
        },
        "description": "Tool to duplicate an existing campaign in ActiveCampaign. Use when you need to create a copy of a campaign with the same configuration and content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_event_tracking_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/event/tracking/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "event",
            "tracking",
            "event"
          ]
        },
        "description": "Tool to create a new event tracking event in ActiveCampaign. Use when you need to whitelist a new event name for tracking and use in automations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_form_optin",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/form/optin",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "form",
            "optin"
          ]
        },
        "description": "Submit a form opt-in for a specific form in ActiveCampaign. Use when you need to programmatically opt-in a contact to a form without requiring them to fill it out manually.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"form_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_import_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/import/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "import",
            "bulk"
          ]
        },
        "description": "Bulk import large numbers of contacts into ActiveCampaign with a single API call. This action allows you to upload up to 250,000 contacts at once. The import is processed asynchronously - contacts are",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"callback\": {},\n  \"contacts\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list"
          ]
        },
        "description": "Tool to create a new list in ActiveCampaign. Use when you need to create a subscriber list for organizing contacts and sending campaigns.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_list_group_permission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list/group/permission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list",
            "group",
            "permission"
          ]
        },
        "description": "Creates a list group permission in ActiveCampaign by associating a list with a user group. This allows you to grant a specific group access permissions to a particular list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"listid\": 0,\n  \"groupid\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "message"
          ]
        },
        "description": "Tool to create a message in ActiveCampaign. Use when you need to create an email message template that can be used in campaigns or automations. The message must include a subject, sender information (",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"message\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_metrics_snapshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/metrics/snapshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "metrics",
            "snapshot"
          ]
        },
        "description": "Tool to retrieve snapshot metrics for specified SMS broadcast IDs in ActiveCampaign. Use when you need aggregated metrics (campaigns, sends, deliveries, clicks, replies, failures, opt-outs) for specif",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "note"
          ]
        },
        "description": "Create a note and attach it to a specific entity (contact, deal, account, etc.) in ActiveCampaign. Use this when you need to add notes to track information about contacts, deals, or accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": \"\",\n  \"relid\": 0,\n  \"reltype\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_or_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "contact"
          ]
        },
        "description": "Create a new contact or update an existing contact in ActiveCampaign using the sync endpoint. This action uses the contact sync endpoint which automatically handles both creation and updates: - If a c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_or_update_custom_object_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/or/update/custom/object/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "or",
            "update",
            "custom",
            "object",
            "record"
          ]
        },
        "description": "Tool to create or update a custom object record in ActiveCampaign. Use when you need to store custom data associated with contacts, accounts, or deals using custom object schemas. The API uses upsert ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"schema_id\": \"\",\n  \"external_id\": \"\",\n  \"relationships\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_prism_url_whitelist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/prism/url/whitelist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "prism",
            "url",
            "whitelist"
          ]
        },
        "description": "Add a domain to ActiveCampaign's site tracking whitelist. Use this to enable tracking, conversations, and WordPress integration for specific domains or pages in your ActiveCampaign account. This actio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"wp_enabled\": false,\n  \"tracking_enabled\": false,\n  \"whitelisted_page\": \"\",\n  \"whitelisted_domain\": \"\",\n  \"conversations_enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "product"
          ]
        },
        "description": "Create a new product entry in the ActiveCampaign ecommerce catalog using GraphQL. This action creates a product in your ActiveCampaign ecommerce catalog with details like name, SKU, price, and variant",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"variant_sku\": \"\",\n  \"variant_name\": \"\",\n  \"store_primary_id\": \"\",\n  \"base_product_name\": \"\",\n  \"legacy_connection_id\": 0,\n  \"variant_price_amount\": 0,\n  \"variant_price_currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_saved_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/saved/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "saved",
            "response"
          ]
        },
        "description": "Tool to create a new saved response in ActiveCampaign. Use when you need to create a reusable email template with title, subject, and body content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"title\": \"\",\n  \"subject\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_segments_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/segments/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "segments",
            "v2"
          ]
        },
        "description": "Tool to create advanced segments in ActiveCampaign using the V2 segments API. Use when you need to create flexible contact segments with complex filtering conditions based on tags, lists, fields, or o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_shareable_campaign_template_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/shareable/campaign/template/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "shareable",
            "campaign",
            "template",
            "link"
          ]
        },
        "description": "Tool to create a shareable link for a campaign template in ActiveCampaign. Use when you need to generate a URL that can be shared with others to access a specific campaign template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_task_reminder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/task/reminder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "task",
            "reminder"
          ]
        },
        "description": "Create a new task reminder notification in ActiveCampaign. Use this action to set up notifications that will remind users about upcoming tasks before their due date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"interval\": \"\",\n  \"deal_task\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_taskoutcome",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/taskoutcome",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "taskoutcome"
          ]
        },
        "description": "Tool to create a new task outcome in ActiveCampaign. Use when you need to add a new outcome option for tasks, which helps categorize task results with associated sentiment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"disabled\": \"\",\n  \"sentiment\": \"\",\n  \"created_by\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user"
          ]
        },
        "description": "Creates a new user (team member/staff account) in ActiveCampaign with specified details. Use when you need to add a new team member who can log into ActiveCampaign. Note: This creates account users (s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lang\": \"\",\n  \"email\": \"\",\n  \"group\": 0,\n  \"lastName\": \"\",\n  \"password\": \"\",\n  \"username\": \"\",\n  \"firstName\": \"\",\n  \"localZoneid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Create a new webhook in ActiveCampaign to receive real-time notifications when specific events occur. Use this when you need to set up automated notifications for contact activities like subscriptions",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"events\": \"\",\n  \"listid\": \"\",\n  \"sources\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "account"
          ]
        },
        "description": "Permanently deletes an account from ActiveCampaign by its ID. This action is irreversible and will remove the account and all associated data from the system. Use this when you need to clean up old or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_account_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/account/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "account",
            "contacts"
          ]
        },
        "description": "Deletes an existing account-contact association in ActiveCampaign. Use when you need to remove the relationship between an account and a contact without deleting either entity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_account_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/account/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "account",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Tool to delete a custom account field value in ActiveCampaign. Use when you need to remove a specific custom field value associated with an account. Requires permission to manage accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_account_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/account/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "account",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Tool to delete an account custom field meta definition from ActiveCampaign. Use when you need to remove a custom field definition permanently. Requires account management permissions. This action is i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_accounts_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/accounts/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "accounts",
            "bulk"
          ]
        },
        "description": "Tool to bulk delete multiple accounts from ActiveCampaign in a single operation. Use when you need to delete multiple accounts at once rather than deleting them individually. This action is irreversib",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "address"
          ]
        },
        "description": "Permanently deletes an address from ActiveCampaign by its ID. This action is irreversible and will remove the address from the system. Use this when you need to clean up old or unwanted addresses. The",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_address_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/address/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "address",
            "group"
          ]
        },
        "description": "Tool to delete an address group from ActiveCampaign by its ID. Use when you need to remove an address group permanently. This action is irreversible and will remove the address group from the system i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_an_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/an/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "an",
            "order"
          ]
        },
        "description": "Tool to permanently delete an e-commerce order from ActiveCampaign by its ID. Use when you need to remove an order from the system. This action is irreversible - the deleted order cannot be recovered.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ecom_order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_calendar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/calendar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "calendar"
          ]
        },
        "description": "Tool to permanently delete a calendar feed from ActiveCampaign by its ID. Use when you need to remove a calendar feed that is no longer needed. The deletion is immediate and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "connection"
          ]
        },
        "description": "Permanently deletes a connection from ActiveCampaign by its ID. This action is irreversible and will remove the connection from the system. Use this when you need to clean up old or unwanted connectio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"connection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact"
          ]
        },
        "description": "Permanently deletes a contact from ActiveCampaign by its ID. This action is irreversible and will remove the contact and all associated data from the system. Use this when you need to clean up old or ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "custom",
            "field"
          ]
        },
        "description": "Tool to delete a custom field from ActiveCampaign by its ID. Use when you need to remove an unwanted or obsolete custom field. This action is irreversible and will permanently delete the field and its",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_custom_field_field_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/custom/field/field/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "custom",
            "field",
            "field",
            "group"
          ]
        },
        "description": "Tool to delete a custom field field group member in ActiveCampaign. Use when you need to remove the association between a custom field and a field group. This operation is permanent and cannot be undo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "customer"
          ]
        },
        "description": "Tool to permanently delete an e-commerce customer from ActiveCampaign by ID. Use when you need to remove a customer and all associated data. This action is irreversible and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal"
          ]
        },
        "description": "Tool to permanently delete a deal from ActiveCampaign by its ID. Use when you need to remove unwanted or obsolete deals from the system. This action is irreversible and will permanently remove the dea",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Tool to delete a custom deal field value in ActiveCampaign. Use when you need to remove custom field data from a deal. Requires deal management permissions and pipeline-specific permissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Tool to delete a custom deal field metadata from ActiveCampaign. Use when you need to remove a custom field definition from deals. Requires deal management permissions and pipeline-specific permission",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal",
            "pipeline"
          ]
        },
        "description": "This tool deletes an existing deal pipeline in ActiveCampaign. When deleting a pipeline that has existing deals and stages associated with it, the DELETE request will remove all stages and deals assoc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pipeline_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal",
            "role"
          ]
        },
        "description": "Tool to delete an existing deal role in ActiveCampaign. Use when you need to permanently remove a deal role that is no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal",
            "stage"
          ]
        },
        "description": "This tool deletes an existing deal stage in ActiveCampaign. Before deleting the stage, it provides options to handle existing deals: use action_type='Move' to move deals to a different stage/pipeline ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"stage_id\": 0,\n  \"action_type\": \"\",\n  \"new_stage_id\": 0,\n  \"new_pipeline_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_deal_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/deal/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "deal",
            "tasks"
          ]
        },
        "description": "Permanently deletes a deal task from ActiveCampaign by its ID. Use when you need to remove a task associated with a deal. The deletion is immediate and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "event"
          ]
        },
        "description": "Tool to delete an event tracking event from ActiveCampaign. Use when you need to remove an event name from the tracking whitelist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_field_relationship",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/field/relationship",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "field",
            "relationship"
          ]
        },
        "description": "Tool to delete a field relationship in ActiveCampaign. Use when you need to remove the association between a custom field and a list. This action is irreversible and will permanently remove the field ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field_rel_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_field_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/field/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "field",
            "value"
          ]
        },
        "description": "Tool to permanently delete a custom field value from ActiveCampaign by its ID. Use when you need to remove a specific field value from a contact. This action is irreversible and will remove the field ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "form"
          ]
        },
        "description": "Tool to permanently delete a form from ActiveCampaign by its ID. Use when you need to remove old or unwanted forms. This action is irreversible and will remove the form and all associated data from th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "group"
          ]
        },
        "description": "Tool to permanently delete a permission group from ActiveCampaign by its ID. Use when you need to remove a group that is no longer needed. This action is irreversible and will remove the group from th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "list"
          ]
        },
        "description": "Permanently deletes a list from ActiveCampaign by its ID. This action is irreversible and will remove the list from the system. Use this when you need to clean up old or unwanted lists. The deletion i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "message"
          ]
        },
        "description": "Permanently deletes a message from ActiveCampaign by its ID. This action is irreversible and will remove the message from the system. Use this when you need to clean up old or unwanted messages. Retur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"message_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "note"
          ]
        },
        "description": "Permanently deletes a note from ActiveCampaign by its ID. This action is irreversible and will remove the note and all associated data from the system. Use this when you need to clean up old or unwant",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "product"
          ]
        },
        "description": "Permanently delete a product from ActiveCampaign's e-commerce catalog by its ID. This action removes a product from the catalog using the deleteProduct GraphQL mutation. The deletion is immediate and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_record_by_external_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/record/by/external/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "record",
            "by",
            "external",
            "id"
          ]
        },
        "description": "Permanently deletes a custom object record from ActiveCampaign by its external ID. This action is irreversible and will remove the record from the system. Use this when you need to clean up old or unw",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_id\": \"\",\n  \"external_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_record_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/record/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "record",
            "by",
            "id"
          ]
        },
        "description": "Permanently deletes a custom object record from ActiveCampaign by its ID and schema ID. This action is irreversible and will remove the record and all associated data from the custom object. Use this ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"record_id\": \"\",\n  \"schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_saved_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/saved/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "saved",
            "response"
          ]
        },
        "description": "Tool to permanently delete a saved response from ActiveCampaign by its ID. Use when you need to remove saved response templates that are no longer needed. The deletion is immediate and cannot be undon",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "schema"
          ]
        },
        "description": "Permanently deletes a custom object schema from ActiveCampaign by its UUID. This action is irreversible and will remove the schema and all associated data. Use with caution as deletion cannot be undon",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_secondary_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/secondary/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "secondary",
            "contact"
          ]
        },
        "description": "Permanently deletes a secondary contact association from a deal in ActiveCampaign. This removes the link between a contact and a deal, but does not delete the contact or deal themselves. Use this when",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_segments_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/segments/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "segments",
            "v2"
          ]
        },
        "description": "Tool to permanently delete a segment from ActiveCampaign by its UUID. This operation removes the segment including all its historic versions and cannot be undone. Use when you need to clean up unused ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Tool to permanently delete a tag from ActiveCampaign by its ID. Use when you need to remove unused or unwanted tags from the system. This action is irreversible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user"
          ]
        },
        "description": "Permanently deletes a user from ActiveCampaign by their ID. This action is irreversible and will remove the user account from the system. Use this when you need to remove team members or staff account",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "variable"
          ]
        },
        "description": "Permanently deletes a personalization variable from ActiveCampaign by its ID. Use when you need to remove unused or unwanted personalization variables. The deletion is immediate and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"variable_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_variables_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/variables/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "variables",
            "bulk"
          ]
        },
        "description": "Tool to bulk delete personalization variables in ActiveCampaign. Use when you need to delete multiple personalization variables at once by providing their IDs. The operation will delete existing varia",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Permanently deletes a webhook from ActiveCampaign by its ID. Use this when you need to remove a webhook that is no longer needed. The deletion is immediate and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_edit_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "campaign"
          ]
        },
        "description": "Edit an existing campaign in ActiveCampaign. Use this to modify campaign properties like the name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_find_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "contact"
          ]
        },
        "description": "Find a specific contact in ActiveCampaign using either their email address, ID, or phone number. This action provides a more efficient way to find a specific contact instead of listing all contacts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_find_contact_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/contact/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "contact",
            "task"
          ]
        },
        "description": "This tool allows you to find tasks associated with a specific contact in ActiveCampaign. It searches for tasks using the contact task title and optionally filters by contact ID. It returns an object w",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"title\": \"\",\n  \"offset\": 0,\n  \"status\": 0,\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_find_user_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/user/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "user",
            "action"
          ]
        },
        "description": "Find an ActiveCampaign account user (team member/staff) by their email address. Returns user details including username, email, first name, last name, phone, signature, language preference, timezone, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_account_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "contact"
          ]
        },
        "description": "Tool to retrieve an existing account-contact association in ActiveCampaign. Use when you need to get details about the relationship between a specific account and contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_account_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Retrieves a specific account custom field data record by ID. Use when you need to get the value of a custom field associated with an account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_account_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Retrieve metadata for a specific account custom field by ID. Returns details including field label, type, options, default value, visibility settings, and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "address"
          ]
        },
        "description": "Retrieves a single address by ID from ActiveCampaign. Use when you need to fetch complete details of a specific address including company name, location fields, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_all_field_relationships",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/field/relationships",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "field",
            "relationships"
          ]
        },
        "description": "Get all field relationships in ActiveCampaign. Use this to retrieve custom field associations with lists or other entities. Supports pagination via limit and offset parameters for handling large numbe",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_audiences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/audiences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "audiences"
          ]
        },
        "description": "Retrieve a specific audience segment by ID from ActiveCampaign. Returns detailed information about the segment including its conditions, groups, and metadata. Use this action when you need to inspect ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_branding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/branding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "branding"
          ]
        },
        "description": "Tool to retrieve an existing branding resource from ActiveCampaign by its ID. Use when you need to fetch branding configuration details such as site name, logos, templates, and styling information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_broadcast_metrics_failures",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/broadcast/metrics/failures",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "broadcast",
            "metrics",
            "failures"
          ]
        },
        "description": "Retrieve grouping and counts of failures for an SMS broadcast in ActiveCampaign. Use when you need to analyze failure patterns for a specific broadcast, with optional date filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"broadcast_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_broadcasts_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/broadcasts/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "broadcasts",
            "metrics"
          ]
        },
        "description": "Tool to retrieve metrics for specified SMS broadcast IDs in ActiveCampaign. Use when you need detailed performance data including sends, deliveries, replies, failures, opt-outs, and clicks for specifi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_broadcasts_recipients",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/broadcasts/recipients",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "broadcasts",
            "recipients"
          ]
        },
        "description": "Fetch all contacts who were sent a specific SMS broadcast in ActiveCampaign. Returns recipient details including delivery status, engagement metrics, and replies.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"search\": \"\",\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"broadcastId\": 0,\n  \"order_field\": \"\",\n  \"filters_engagement\": \"\",\n  \"filters_deliverability\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_bulk_import_status_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/bulk/import/status/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "bulk",
            "import",
            "status",
            "info"
          ]
        },
        "description": "Tool to retrieve the status of a specific bulk import in ActiveCampaign. Use when you need to check the progress and results of a bulk contact import, including newly created contact IDs and any faile",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batch_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_calendar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/calendar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "calendar"
          ]
        },
        "description": "Tool to retrieve a specific calendar feed from ActiveCampaign by its ID. Returns calendar details including title, type, token, notification settings, and creation/modification dates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_automation_campaign_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/automation/campaign/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "automation",
            "campaign",
            "lists"
          ]
        },
        "description": "Tool to retrieve all lists associated with a specific campaign automation in ActiveCampaign. Use when you need to see which lists a campaign is configured to send to.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_automations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/automations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "automations"
          ]
        },
        "description": "Get automation information associated with a specific campaign in ActiveCampaign. This action retrieves automation details linked to a campaign ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "by",
            "id"
          ]
        },
        "description": "Retrieve a single campaign by its ID from ActiveCampaign. Returns comprehensive campaign details including engagement metrics, content configuration, and automation settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_links",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/links",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "links"
          ]
        },
        "description": "Get all links associated with a specific campaign in ActiveCampaign. Use when you need to retrieve tracking links, read trackers, and other URLs associated with a campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "message"
          ]
        },
        "description": "Get the message associated with a specific campaign in ActiveCampaign. Returns message details including subject, content (HTML and text), sender information, and configuration settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_messages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/messages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "messages"
          ]
        },
        "description": "Get campaign messages associated with a specific campaign in ActiveCampaign. Returns an array of message objects linked to the campaign ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_campaign_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/campaign/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "campaign",
            "user"
          ]
        },
        "description": "Get the user (account owner/staff member) associated with a specific campaign in ActiveCampaign. Returns user details including username, email, name, phone, and other account information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_account_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/account/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "account",
            "contacts"
          ]
        },
        "description": "Retrieve all account-contact associations for a specific contact in ActiveCampaign. Use this action when you need to see which accounts a contact is associated with and their role at each account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_automation_entry_counts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/automation/entry/counts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "automation",
            "entry",
            "counts"
          ]
        },
        "description": "Tool to retrieve the number of times a contact has entered each automation. Use when you need to understand a contact's automation engagement history.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_automations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/automations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "automations"
          ]
        },
        "description": "Retrieve all automations that a specific contact is enrolled in or has been enrolled in. Returns automation enrollment details including status, progress, and completion information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "data"
          ]
        },
        "description": "Retrieve detailed data for a specific contact in ActiveCampaign. Use when you need to access a contact's geographic information, social media IDs, Google Analytics data, and tracking timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_data_goals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/data/goals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "data",
            "goals"
          ]
        },
        "description": "Retrieve a contact's goals from ActiveCampaign. Use when you need to access goal completion data, automation goals, and goal tracking information for a specific contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "deals"
          ]
        },
        "description": "Tool to retrieve all deals associated with a specific contact in ActiveCampaign. Use when you need to see all deals linked to a particular contact, including deal details like value, stage, status, an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_events_and_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/events/and/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "events",
            "and",
            "activities"
          ]
        },
        "description": "Tool to retrieve contact events and activities from ActiveCampaign. Use when you need to view the activity history for a specific contact or all contacts, including deal-related activities and general",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"contact\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_field_values",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/field/values",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "field",
            "values"
          ]
        },
        "description": "Tool to retrieve all custom field values for a specific contact in ActiveCampaign. Use when you need to access a contact's custom field data such as custom text fields, dropdown selections, or other c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_geo_ips_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/geo/ips/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "geo",
            "ips",
            "list"
          ]
        },
        "description": "Retrieve all geo IP addresses associated with a specific contact in ActiveCampaign. Use when you need to view the geographic locations from which a contact has interacted with your campaigns.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "lists"
          ]
        },
        "description": "Tool to retrieve all list memberships for a specific contact in ActiveCampaign. Use when you need to see which lists a contact is subscribed to and their subscription details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "logs"
          ]
        },
        "description": "Tool to retrieve logs for a specific contact in ActiveCampaign. Use when you need to access a contact's activity history, including subscription changes, campaign interactions, and automation events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_notes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/notes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "notes"
          ]
        },
        "description": "Retrieve all existing notes associated with a specific contact in ActiveCampaign. Use when you need to view all notes that have been added to a contact's record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "organization"
          ]
        },
        "description": "Tool to retrieve organization information associated with a specific contact in ActiveCampaign. Use when you need to get details about the organization that a contact belongs to.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_plus_append",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/plus/append",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "plus",
            "append"
          ]
        },
        "description": "Tool to retrieve a contact's plus append enrichment data from ActiveCampaign. Use when you need to access enriched contact information including social media profiles, profile images, and demographic ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_score_values",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/score/values",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "score",
            "values"
          ]
        },
        "description": "Tool to retrieve all score values associated with a specific contact in ActiveCampaign. Use when you need to see scoring data for a contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "tags"
          ]
        },
        "description": "Tool to retrieve all tags associated with a specific contact in ActiveCampaign. Use when you need to see which tags are applied to a contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_contact_tracking_logs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/tracking/logs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "tracking",
            "logs"
          ]
        },
        "description": "Retrieve tracking logs for a specific contact in ActiveCampaign. Use when you need to view all tracking events such as page views, link clicks, and file downloads associated with a contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "custom",
            "field"
          ]
        },
        "description": "Retrieve a specific custom field by ID from ActiveCampaign. Returns field metadata including title, type, options, relationships, and configuration settings. Use when you need detailed information abo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_deal_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Retrieves a specific deal custom field data record by ID. Use when you need to get the value of a custom field associated with a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_deal_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Retrieve metadata for a specific deal custom field by ID. Returns details including field label, type, options, default value, visibility settings, and timestamps. Requires deal management permission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_deal_pipeline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal/pipeline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal",
            "pipeline"
          ]
        },
        "description": "Tool to retrieve an existing pipeline (deal group) from ActiveCampaign by its ID. Use when you need to get details about a specific pipeline including its name, currency, stages, and configuration set",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_deal_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal",
            "stage"
          ]
        },
        "description": "Tool to retrieve an existing deal stage from ActiveCampaign by its ID. Use when you need to get detailed information about a specific stage including its title, color, order, and card region configura",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_deal_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal",
            "task"
          ]
        },
        "description": "Tool to retrieve an existing task in ActiveCampaign by its ID. Use when you need to get detailed information about a specific task including its title, status, due date, assignee, and related contact ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_deal_task_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deal/task/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deal",
            "task",
            "type"
          ]
        },
        "description": "Tool to retrieve an existing deal task type in ActiveCampaign by its ID. Use when you need to get details about a specific task type configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_event_tracking_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/event/tracking/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "event",
            "tracking",
            "status"
          ]
        },
        "description": "Tool to retrieve the event tracking status for your ActiveCampaign account. Use this to check whether event tracking is enabled or disabled.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_field_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/field/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "field",
            "value"
          ]
        },
        "description": "Tool to retrieve a specific field value by its ID in ActiveCampaign. Use when you need to get detailed information about a particular custom field value including its contact, field, value, and timest",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "form"
          ]
        },
        "description": "Retrieve a single form by its ID from ActiveCampaign. Returns comprehensive form details including field configuration, styling, submission behavior, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_group_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/group/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "group",
            "by",
            "id"
          ]
        },
        "description": "Retrieve a specific group by ID in ActiveCampaign. Use this to get detailed information about a single group including its title, description, settings, and associated resource links.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_group_limits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/group/limits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "group",
            "limits"
          ]
        },
        "description": "Tool to retrieve group limits configured for different groups in ActiveCampaign account. Use when you need to check limits for emails, contacts, lists, campaigns, users, and other resources per group.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "lists"
          ]
        },
        "description": "Tool to retrieve all mailing lists in ActiveCampaign. Use when you need to fetch list IDs or list information for subscription management.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_logged_in_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/logged/in/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "logged",
            "in",
            "user"
          ]
        },
        "description": "Retrieve information about the currently authenticated user (the user whose API token is being used). Use when you need to identify the current user or access their account details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "note"
          ]
        },
        "description": "Tool to retrieve a specific note from ActiveCampaign by its ID. Use when you need to get details about a particular note including its content, creation date, and related entity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "order"
          ]
        },
        "description": "Retrieve a single order from ActiveCampaign by legacy connection ID and store order ID. Use this to fetch complete order details including customer information, line items, addresses, and order status",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"store_order_id\": \"\",\n  \"legacy_connection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_product_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/product/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "product",
            "by",
            "id"
          ]
        },
        "description": "Retrieve a single product by its ID from ActiveCampaign's e-commerce catalog. Use when you need to fetch detailed information about a specific product, including its name, SKU, pricing, and descriptio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_recent_segment_counts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/recent/segment/counts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "recent",
            "segment",
            "counts"
          ]
        },
        "description": "Retrieve the most recent result count for segments that were run without additional criteria. Use when you need to check segment sizes or monitor segment growth over time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"segment_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_record_by_external_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/record/by/external/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "record",
            "by",
            "external",
            "id"
          ]
        },
        "description": "Tool to retrieve a custom object record from ActiveCampaign by its external ID. Use when you need to get detailed information about a specific custom object record using its external identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_id\": \"\",\n  \"external_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_record_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/record/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "record",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a custom object record from ActiveCampaign by schema ID and record ID. Use when you need to get detailed information about a specific custom object record including its fields, values",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"record_id\": \"\",\n  \"schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_saved_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/saved/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "saved",
            "response"
          ]
        },
        "description": "Tool to retrieve a specific saved response from ActiveCampaign by its ID. Use when you need to fetch details of a saved response including title, subject, and body content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_schema_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/schema/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "schema",
            "by",
            "id"
          ]
        },
        "description": "Retrieve a specific custom object schema by ID in ActiveCampaign. Use this to get detailed information about a schema including its fields, relationships, and metadata. Optionally include deleted fiel",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_id\": \"\",\n  \"show_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_secondary_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/secondary/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "secondary",
            "contact"
          ]
        },
        "description": "Tool to retrieve a specific secondary contact (contact-deal association) by ID in ActiveCampaign. Use when you need to get details about a particular secondary contact associated with a deal.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segment_count_by_timestamp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/count/by/timestamp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "count",
            "by",
            "timestamp"
          ]
        },
        "description": "Tool to retrieve all result counts for a segment that were run without an AdditionalCriteria. Use when you need to access historical segment count data before a specific timestamp. Returns up to 50 se",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"timestamp\": 0,\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segment_count_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/count/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "count",
            "history"
          ]
        },
        "description": "Tool to retrieve all historical result counts for a given segment that were run without additional criteria. Use when you need to track segment size changes over time or audit segment evaluation histo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segment_match",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/match",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "match"
          ]
        },
        "description": "Retrieve segment match evaluation for a contact in ActiveCampaign. Use this to determine if a specific contact matches the criteria of a given segment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": \"\",\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segment_match_all_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/match/all/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "match",
            "all",
            "result"
          ]
        },
        "description": "Tool to retrieve segment match-all result set by ID. Use when you need to check the status and results of a segment match-all request. The is_ready attribute indicates if results are complete (true) o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"run_id\": \"\",\n  \"page_size\": 0,\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segment_match_by_external_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/match/by/external/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "match",
            "by",
            "external",
            "id"
          ]
        },
        "description": "Check if a contact matches a segment using segment ID, contact ID, and external ID. Use when you need to verify if a specific contact belongs to a segment and get match evaluation details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_id\": 0,\n  \"segment_id\": \"\",\n  \"external_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segment_match_some_result",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segment/match/some/result",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segment",
            "match",
            "some",
            "result"
          ]
        },
        "description": "Tool to retrieve segment match result set by run ID in ActiveCampaign. Use when you need to fetch the results of a segment evaluation request, including which contacts match the segment criteria. The ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"run_id\": \"\",\n  \"page_size\": 0,\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segments_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segments/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segments",
            "v2"
          ]
        },
        "description": "Tool to retrieve a specific segment by its ID in ActiveCampaign. Use when you need detailed information about a segment including its conditions, groups, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_segments_v2_created_date",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/segments/v2/created/date",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "segments",
            "v2",
            "created",
            "date"
          ]
        },
        "description": "Tool to retrieve a segment as it existed at a given point in time in ActiveCampaign. Use when you need to access the historical state of a segment definition. Only supports segments with non-numeric s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"timestamp\": \"\",\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_site_tracking_code",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/site/tracking/code",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "site",
            "tracking",
            "code"
          ]
        },
        "description": "Tool to retrieve the site tracking JavaScript code for your ActiveCampaign account. Use when you need to get the tracking code snippet to embed on your website for visitor tracking and behavior monito",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_site_tracking_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/site/tracking/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "site",
            "tracking",
            "status"
          ]
        },
        "description": "Tool to retrieve the site tracking status for your ActiveCampaign account. Use this to check whether site tracking is enabled or disabled.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_sms_broadcast_metrics_snapshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sms/broadcast/metrics/snapshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sms",
            "broadcast",
            "metrics",
            "snapshot"
          ]
        },
        "description": "Tool to retrieve snapshot data for all SMS broadcasts in ActiveCampaign. Use when you need aggregate metrics including campaigns, sends, deliveries, clicks, replies, failures, and opt-outs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end_date\": \"\",\n  \"start_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_sms_credits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sms/credits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sms",
            "credits"
          ]
        },
        "description": "Tool to retrieve the current period's SMS credit usage and remaining balance. Use when you need to check how many SMS credits are available, used, or included in the billing cycle.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tag"
          ]
        },
        "description": "Tool to retrieve a tag from ActiveCampaign by its ID. Use when you need to get detailed information about a specific tag including its name, type, description, and subscriber count.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_taskoutcome",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/taskoutcome",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "taskoutcome"
          ]
        },
        "description": "Tool to retrieve a specific task outcome from ActiveCampaign by its ID. Use when you need to get details about a task outcome including its title, sentiment, and associated deal task types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "template"
          ]
        },
        "description": "Retrieve a single template by its ID from ActiveCampaign. Returns comprehensive template details including content, subject, and configuration settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user"
          ]
        },
        "description": "Tool to retrieve a specific ActiveCampaign account user (team member/staff) by their ID. Use when you need to get detailed information about a specific user including username, email, name, phone, sig",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_user_by_username",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/by/username",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "by",
            "username"
          ]
        },
        "description": "Tool to retrieve an ActiveCampaign account user (team member/staff) by their username. Use when you need to get detailed information about a specific user by username.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users"
          ]
        },
        "description": "Tool to retrieve all ActiveCampaign account users (team members/staff). Use when you need to list all users in the account with pagination and sorting options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"orders\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_users_by_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/users/by/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "users",
            "by",
            "group"
          ]
        },
        "description": "Tool to retrieve all users associated with a specific group in ActiveCampaign. Use when you need to get the list of users who belong to a particular group.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"group_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "variable"
          ]
        },
        "description": "Tool to retrieve a personalization variable from ActiveCampaign by its ID. Use when you need to get details about a specific variable including its name, tag, content, format, and associated lists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"variable_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_variables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "variables"
          ]
        },
        "description": "Tool to retrieve personalization variables from ActiveCampaign. Use when you need to list or search for custom variables that can be used for personalization in campaigns and automations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_get_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook"
          ]
        },
        "description": "Retrieve an existing webhook by ID from ActiveCampaign. Use this when you need to get detailed information about a specific webhook including its URL, events, sources, and current state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_account_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/account/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "account",
            "contacts"
          ]
        },
        "description": "Tool to retrieve all existing account-contact associations in ActiveCampaign. Use when you need to list relationships between accounts and contacts, with optional filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters_account\": 0,\n  \"filters_contact\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_account_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/account/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "account",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Tool to list all custom field values for accounts in ActiveCampaign. Use when you need to retrieve account custom field data including field IDs, values, account associations, and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_account_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/account/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "account",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Tool to list all account custom field metadata in ActiveCampaign. Use when you need to retrieve information about custom fields available for accounts, including field types, labels, options, and vali",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_addresses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/addresses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "addresses"
          ]
        },
        "description": "Tool to list all addresses in the ActiveCampaign account. Use when you need to retrieve all configured addresses. Returns an array of address objects with company name, address details, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "accounts"
          ]
        },
        "description": "Tool to list all accounts in ActiveCampaign. Use when you need to retrieve all existing accounts, optionally filtered by name search. Can include contact and deal counts for each account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"search\": \"\",\n  \"count_deals\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "contacts"
          ]
        },
        "description": "List all contacts in ActiveCampaign. This action allows you to: 1. List all contacts with pagination 2. Search contacts by name, organization, phone, or email 3. Filter contacts by email pattern 4. So",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"tagid\": 0,\n  \"listid\": \"\",\n  \"orders\": {},\n  \"search\": \"\",\n  \"filters\": {},\n  \"id_less\": 0,\n  \"segmentid\": 0,\n  \"email_like\": \"\",\n  \"id_greater\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_custom_field_values",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/custom/field/values",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "custom",
            "field",
            "values"
          ]
        },
        "description": "Tool to list all custom field values in ActiveCampaign. Use when you need to retrieve all custom field values across all contacts including field IDs, values, contact associations, and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_custom_fields2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/custom/fields2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "custom",
            "fields2"
          ]
        },
        "description": "Tool to list all custom fields in ActiveCampaign with pagination support. Use when you need to retrieve information about custom fields with control over the number of results returned per request.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_events_name_only",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/events/name/only",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "events",
            "name",
            "only"
          ]
        },
        "description": "Tool to list all whitelisted event tracking events in ActiveCampaign. Use when you need to retrieve the names of all events that are whitelisted for tracking and can be used in automations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_schemas",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/schemas",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "schemas"
          ]
        },
        "description": "Tool to list all custom object schemas in ActiveCampaign. Use when you need to retrieve all schema definitions including their fields, relationships, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"showFields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_tags2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/tags2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "tags2"
          ]
        },
        "description": "Tool to retrieve all tags in ActiveCampaign with search functionality. Use when you need to list or search for tags.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_all_white_listed_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/white/listed/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "white",
            "listed",
            "domains"
          ]
        },
        "description": "Tool to list all whitelisted domains for site tracking in ActiveCampaign. Use when you need to retrieve all domains that are allowed for site tracking.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_audiences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/audiences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "audiences"
          ]
        },
        "description": "Retrieve all saved segment summaries (audiences) from ActiveCampaign. Returns a list of all saved segments with their configurations, conditions, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_automations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/automations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "automations"
          ]
        },
        "description": "List all automations in ActiveCampaign. Use this to retrieve all automation workflows in your account. Supports pagination via limit and offset parameters for handling large numbers of automations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_bulk_import_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bulk/import/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bulk",
            "import",
            "status"
          ]
        },
        "description": "Tool to monitor bulk import progress in ActiveCampaign. Use this after sending bulk data via POST endpoint to track the status of outstanding and recently completed batches. Requires the batchId retur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"batchId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_bulk_import_status_aggregate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/bulk/import/status/aggregate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "bulk",
            "import",
            "status",
            "aggregate"
          ]
        },
        "description": "Tool to retrieve aggregate progress data for all bulk import jobs in ActiveCampaign. Returns daily summaries of outstanding and recently completed batch jobs in a rolling 7-day window. Use this to mon",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_calendars",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/calendars",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "calendars"
          ]
        },
        "description": "Tool to list all calendar feeds in ActiveCampaign. Use when you need to retrieve all available calendar feeds for the account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "campaigns"
          ]
        },
        "description": "Tool to list all campaigns in ActiveCampaign. Use when you need to retrieve campaign information including standard campaigns and automation campaigns.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"orders\": {},\n  \"filters\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_contact_automations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/automations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "automations"
          ]
        },
        "description": "List all automations that contacts are enrolled in. Returns enrollment details including status, dates, and progress for each contact-automation pair.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_contact_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "deals"
          ]
        },
        "description": "Tool to retrieve all secondary contacts (contact-deal associations) in ActiveCampaign. Use when you need to list all additional contacts associated with deals, beyond the primary contacts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deal_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deal/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deal",
            "activities"
          ]
        },
        "description": "Tool to retrieve all recent activities for deals in ActiveCampaign. Use when you need to view activity history across deals, including notes, tasks, and other interactions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deal_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deal/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deal",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Tool to list all custom field values for deals in ActiveCampaign. Use when you need to retrieve deal custom field data including field IDs, values, deal associations, and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deal_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deal/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deal",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Tool to list all deal custom field metadata in ActiveCampaign. Use when you need to retrieve information about custom fields available for deals, including field types, labels, options, and validation",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deal_roles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deal/roles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deal",
            "roles"
          ]
        },
        "description": "Tool to retrieve all deal roles in ActiveCampaign. Use when you need to view available deal roles that can be assigned to contacts in deals.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deal_stages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deal/stages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deal",
            "stages"
          ]
        },
        "description": "Tool to list all deal stages (pipeline stages) in ActiveCampaign. Use when you need to retrieve stage information for mapping stage titles to stage IDs before updating or moving deals. Optionally filt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"title\": \"\",\n  \"offset\": 0,\n  \"pipeline_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deal_task_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deal/task/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deal",
            "task",
            "types"
          ]
        },
        "description": "Tool to retrieve all existing task types for deals in ActiveCampaign. Use when you need to view available task type categories that can be assigned to deal tasks.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_dealgroups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/dealgroups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "dealgroups"
          ]
        },
        "description": "Tool to retrieve all existing deal pipelines from ActiveCampaign. Use when you need to list all pipelines in the account or filter pipelines by title.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters_title\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_deals2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deals2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deals2"
          ]
        },
        "description": "Tool to list all deals from ActiveCampaign with search and filtering capabilities. Use when you need to retrieve deals with search by title or filter by stage, pipeline, owner, or status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters_group\": 0,\n  \"filters_owner\": 0,\n  \"filters_stage\": 0,\n  \"filters_search\": \"\",\n  \"filters_status\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_email_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/email/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "email",
            "activities"
          ]
        },
        "description": "Tool to list all email activities in ActiveCampaign. Use when you need to retrieve email activity records for a specific subscriber or deal. At least one filter parameter (subscriber ID or deal ID) sh",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters_dealId\": 0,\n  \"filters_subscriberid\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_forms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/forms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "forms"
          ]
        },
        "description": "Tool to list all forms in ActiveCampaign. Use when you need to retrieve form information including form configurations, fields, and styling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_group_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/group/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "group",
            "members"
          ]
        },
        "description": "Tool to list all group members in ActiveCampaign. Use when you need to retrieve the relationships between custom fields and field groups. Group members link custom fields to their display groups.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "groups"
          ]
        },
        "description": "Tool to retrieve all permission groups from ActiveCampaign. Use when you need to list user groups with their permission settings. Supports pagination via limit and offset parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_messages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/messages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "messages"
          ]
        },
        "description": "Tool to list all messages in ActiveCampaign. Use when you need to retrieve message information including email content, sender details, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"tagid\": 0,\n  \"formid\": 0,\n  \"listid\": 0,\n  \"offset\": 0,\n  \"search\": \"\",\n  \"waitid\": 0,\n  \"seriesid\": 0,\n  \"segmentid\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_notes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/notes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "notes"
          ]
        },
        "description": "Retrieve a list of all notes in ActiveCampaign. Use when you need to view all notes across all contacts and activities in the account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_order_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/order/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "order",
            "products"
          ]
        },
        "description": "Tool to list all e-commerce order products in ActiveCampaign. Use when you need to retrieve all order products with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_prism_url_whitelistings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/prism/url/whitelistings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "prism",
            "url",
            "whitelistings"
          ]
        },
        "description": "Tool to list all whitelisted site tracking domains in ActiveCampaign. Use when you need to retrieve domains that are allowed for site tracking.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_records_for_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/records/for/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "records",
            "for",
            "schema"
          ]
        },
        "description": "Tool to list custom object records for a specific schema in ActiveCampaign. Use when you need to retrieve records created from a custom object schema. Note: Non-admin users must provide a filter param",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters\": {},\n  \"schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_saved_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/saved/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "saved",
            "responses"
          ]
        },
        "description": "Tool to list all saved responses in ActiveCampaign. Use when you need to retrieve saved response templates for one-off personal emails.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_scores",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/scores",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "scores"
          ]
        },
        "description": "Tool to list all scoring rules configured in ActiveCampaign. Use when you need to retrieve all available scores for contacts or deals.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_segment_match_all",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/segment/match/all",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "segment",
            "match",
            "all"
          ]
        },
        "description": "Initiate a match-all request for contacts in a segment. If results are not ready within 4 seconds, returns immediately with is_ready=False and a run_id. Use when you need to retrieve all contacts that",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"sort\": \"\",\n  \"instant\": \"\",\n  \"page_size\": 0,\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_sms_broadcast_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sms/broadcast/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sms",
            "broadcast",
            "lists"
          ]
        },
        "description": "Tool to retrieve a paged list of all SMS broadcast lists in ActiveCampaign. Use when you need to view available SMS broadcast lists, optionally filtered by name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"filters_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_sms_broadcasts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sms/broadcasts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sms",
            "broadcasts"
          ]
        },
        "description": "Tool to list all SMS broadcasts in ActiveCampaign with optional filtering and pagination. Use when you need to retrieve broadcast messages, check their status, or search for specific broadcasts by nam",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"end_date\": \"\",\n  \"start_date\": \"\",\n  \"filters_name\": \"\",\n  \"filters_type\": \"\",\n  \"orders_field\": \"\",\n  \"filters_status\": \"\",\n  \"orders_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_task_outcomes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/task/outcomes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "task",
            "outcomes"
          ]
        },
        "description": "Tool to retrieve all existing task outcomes from ActiveCampaign. Use when you need to list all available task outcome options that can be assigned to tasks.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_webhook_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhook/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhook",
            "events"
          ]
        },
        "description": "List all available webhook events in ActiveCampaign. Use this action when you need to discover what webhook events are available for subscription.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "Tool to list all existing webhooks in ActiveCampaign. Use when you need to retrieve all configured webhooks including their names, URLs, events, and sources.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_lock_personalization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lock/personalization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lock",
            "personalization"
          ]
        },
        "description": "Tool to lock a personalization variable in ActiveCampaign. Use when you need to prevent modifications to a personalization variable. Once locked, the variable cannot be edited.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_manage_contact_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/contact/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "contact",
            "tag"
          ]
        },
        "description": "Manage tags for a contact in ActiveCampaign. This action allows adding or removing tags from a contact. The action can be performed using either the contact's ID or email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"action\": \"\",\n  \"contact_id\": \"\",\n  \"contact_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_remove_contact_from_automation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/contact/from/automation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "contact",
            "from",
            "automation"
          ]
        },
        "description": "Removes a contact from a specified automation in ActiveCampaign. This action looks up the contact by their email address to get their ID, then removes them from the specified automation. A contact can",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"automation_id\": \"\",\n  \"contact_email\": \"\",\n  \"run_remove_option\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_remove_domain_from_whitelist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/domain/from/whitelist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "domain",
            "from",
            "whitelist"
          ]
        },
        "description": "Remove a domain from ActiveCampaign's URL whitelist. Use this to revoke site tracking access for a specific domain that was previously whitelisted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_remove_tag_from_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/tag/from/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "tag",
            "from",
            "contact"
          ]
        },
        "description": "Tool to remove a tag from a contact in ActiveCampaign. Use when you need to disassociate a tag from a contact. Requires the contactTag ID (the relationship ID, not the tag ID itself).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "a",
            "deal"
          ]
        },
        "description": "Tool to retrieve a specific deal by its ID in ActiveCampaign. Use when you need detailed information about a single deal including its title, value, stage, status, and associated contacts or organizat",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "account"
          ]
        },
        "description": "Tool to retrieve an account from ActiveCampaign by its ID. Use when you need to get detailed information about a specific account including its name, URL, timestamps, and custom fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_all_connections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/all/connections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "all",
            "connections"
          ]
        },
        "description": "Tool to retrieve all Deep Data connection resources in ActiveCampaign. Use when you need to list connections between the ActiveCampaign account and external services like Shopify or other e-commerce p",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_all_customers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/all/customers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "all",
            "customers"
          ]
        },
        "description": "Tool to retrieve all e-commerce customer resources from ActiveCampaign. Use when you need to list customers from external e-commerce services like Shopify, including aggregated metrics such as total r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_all_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/all/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "all",
            "deals"
          ]
        },
        "description": "Tool to retrieve all deals from ActiveCampaign with filtering and pagination support. Use when you need to list deals, optionally filtered by stage, contact, organization, status, or value range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"orders\": {},\n  \"filters\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_all_orders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/all/orders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "all",
            "orders"
          ]
        },
        "description": "Tool to retrieve all e-commerce orders from ActiveCampaign with pagination support. Use when you need to list orders from external e-commerce platforms like Shopify, including order details such as to",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_all_products_for_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/all/products/for/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "all",
            "products",
            "for",
            "order"
          ]
        },
        "description": "Tool to retrieve all products associated with a specific e-commerce order in ActiveCampaign. Use when you need to list all products that belong to a particular order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_an_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/an/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "an",
            "order"
          ]
        },
        "description": "Tool to retrieve an e-commerce order from ActiveCampaign by its ID. Use when you need to get detailed information about a specific order including customer, pricing, products, and order status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ecom_order_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_an_order_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/an/order/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "an",
            "order",
            "product"
          ]
        },
        "description": "Tool to retrieve an ecommerce order product from ActiveCampaign by its ID. Use when you need to get detailed information about a specific order product including SKU, price, quantity, and related orde",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"productId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "connection"
          ]
        },
        "description": "Tool to retrieve a connection from ActiveCampaign by its ID. Use when you need to get detailed information about a specific connection including service type, status, and synchronization details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "customer"
          ]
        },
        "description": "Tool to retrieve an e-commerce customer from ActiveCampaign by their ID. Use when you need to get detailed information about a specific customer including email, revenue, order statistics, and connect",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"customer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_deal_activities",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/deal/activities",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "deal",
            "activities"
          ]
        },
        "description": "Tool to retrieve all activities associated with a deal in ActiveCampaign. Use when you need to track changes, interactions, and history for a specific deal including contact additions, notes, stage ch",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "list"
          ]
        },
        "description": "Tool to retrieve a specific list from ActiveCampaign by its ID. Use when you need to get detailed information about a list including its name, description, tracking settings, and configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_retrieve_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "message"
          ]
        },
        "description": "Tool to retrieve a specific message by its ID in ActiveCampaign. Use when you need detailed information about a single message including its subject, content (HTML and text), sender information, and c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_save_browse_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/browse/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "browse",
            "session"
          ]
        },
        "description": "Create a browse session in ActiveCampaign for testing purposes. Use this to simulate customer browsing behavior in a specified state. This action creates a new browse session with the specified status",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"products\": \"\",\n  \"to_abandon_date\": \"\",\n  \"normalized_status\": \"\",\n  \"legacy_connection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_search_browse_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/browse/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "browse",
            "session"
          ]
        },
        "description": "Search for browse sessions matching specified criteria in ActiveCampaign. Use when you need to find browse sessions for a specific contact, connection, and status combination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"normalized_status\": \"\",\n  \"legacy_connection_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_search_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "product"
          ]
        },
        "description": "Search for products using filter criteria in ActiveCampaign's e-commerce catalog. Use when you need to find products by name, status, or other attributes with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status_sort\": \"\",\n  \"status_value\": \"\",\n  \"base_product_name_sort\": \"\",\n  \"status_filter_operator\": \"\",\n  \"base_product_name_value\": \"\",\n  \"base_product_name_filter_operator\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_search_recurring_payment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/recurring/payment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "recurring",
            "payment"
          ]
        },
        "description": "Search for recurring payment records based on filter criteria. Use when you need to find subscription payments by email, status, connection, or other attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_test_tracking_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/test/tracking/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "test",
            "tracking",
            "event"
          ]
        },
        "description": "Simulate a tracking event coming into the Browse Session system with debug output for testing URL patterns. This action allows you to test how ActiveCampaign's Browse Session system will process track",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"email\": \"\",\n  \"event_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_track_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/track/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "track",
            "event"
          ]
        },
        "description": "Track custom events for contacts in ActiveCampaign to trigger automations and monitor user engagement. This action records specific user actions (e.g., file downloads, button clicks, logins) for exist",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_key\": \"\",\n  \"event_name\": \"\",\n  \"event_actid\": \"\",\n  \"event_value\": \"\",\n  \"event_contact_email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_unlock_personalization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unlock/personalization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unlock",
            "personalization"
          ]
        },
        "description": "Tool to unlock a personalization variable in ActiveCampaign. Use when you need to allow modifications to a personalization variable. Once unlocked, the variable can be edited.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_a_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "deal"
          ]
        },
        "description": "Tool to update an existing deal in ActiveCampaign. Use when you need to modify deal properties such as title, value, stage, or status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"group\": \"\",\n  \"owner\": \"\",\n  \"stage\": 0,\n  \"title\": \"\",\n  \"value\": 0,\n  \"status\": 0,\n  \"account\": \"\",\n  \"contact\": \"\",\n  \"percent\": 0,\n  \"currency\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_a_deal_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/deal/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "deal",
            "note"
          ]
        },
        "description": "Tool to update an existing note for a specific deal in ActiveCampaign. Use when you need to modify the content of an existing note attached to a deal record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"note\": {},\n  \"deal_id\": \"\",\n  \"note_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_a_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/a/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "a",
            "tag"
          ]
        },
        "description": "Tool to update an existing tag in ActiveCampaign. Use when you need to modify a tag's name, type, or description. Requires the tag ID and at least the tag name and type.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"tag_id\": \"\",\n  \"tag_type\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account"
          ]
        },
        "description": "This tool updates an existing account in ActiveCampaign. It allows modification of account details such as name, website URL, and custom fields. It complements the existing ACTIVE_CAMPAIGN_CREATE_ACCO",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": 0,\n  \"fields\": \"\",\n  \"accountUrl\": \"\",\n  \"account_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_account_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "contact"
          ]
        },
        "description": "Tool to update an existing account-contact association in ActiveCampaign. Use when you need to modify the relationship between an account and contact, such as updating the contact's job title at that ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"account\": 0,\n  \"contact\": 0,\n  \"jobTitle\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_account_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Updates a custom account field value in ActiveCampaign. Use when you need to modify an existing custom field value for an account. Requires account permission to manage accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"fieldValue\": \"\",\n  \"customFieldId\": 0,\n  \"fieldCurrency\": \"\",\n  \"customerAccountId\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_account_custom_field_data_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/custom/field/data/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "custom",
            "field",
            "data",
            "bulk"
          ]
        },
        "description": "Tool to bulk update multiple custom account field values in a single request. Use when you need to update existing accountCustomFieldData records by their IDs with new field values. This is more effic",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"updates\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_account_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Update metadata for an account custom field. Allows modification of field label, options, default value, visibility, and display order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"fieldLabel\": \"\",\n  \"displayOrder\": 0,\n  \"fieldDefault\": \"\",\n  \"fieldOptions\": \"\",\n  \"isFormVisible\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_account_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "note"
          ]
        },
        "description": "Tool to update an existing account note in ActiveCampaign. Use when you need to modify the content of an existing note attached to a specific account. The note will be updated for the account specifie",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"note\": {},\n  \"note_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_address",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/address",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "address"
          ]
        },
        "description": "Tool to update an existing address in ActiveCampaign. Use when you need to modify address details such as company name, street address, city, state, zip code, or country for an existing address record",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"address\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_an_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/an/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "an",
            "order"
          ]
        },
        "description": "Tool to update an existing e-commerce order in ActiveCampaign. Use when you need to modify order details such as pricing, shipping, or customer information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"source\": 0,\n  \"currency\": \"\",\n  \"orderUrl\": \"\",\n  \"orderDate\": \"\",\n  \"taxAmount\": 0,\n  \"customerid\": 0,\n  \"externalid\": \"\",\n  \"totalPrice\": 0,\n  \"ecomOrderId\": \"\",\n  \"orderNumber\": \"\",\n  \"connectionid\": 0,\n  \"abandonedDate\": \"\",\n  \"discountAmount\": 0,\n  \"shippingAmount\": 0,\n  \"shippingMethod\": \"\",\n  \"externalcheckoutid\": \"\",\n  \"externalCreatedDate\": \"\",\n  \"externalUpdatedDate\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_branding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/branding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "branding"
          ]
        },
        "description": "Tool to update an existing branding resource in ActiveCampaign. Use when you need to modify branding configuration such as site name, logos, templates, styling, or other branding-related settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"help\": \"\",\n  \"favicon\": \"\",\n  \"groupid\": \"\",\n  \"license\": \"\",\n  \"version\": \"\",\n  \"siteLogo\": \"\",\n  \"siteName\": \"\",\n  \"copyright\": \"\",\n  \"siteLogoSmall\": \"\",\n  \"footerHtmlValue\": \"\",\n  \"footerTextValue\": \"\",\n  \"headerHtmlValue\": \"\",\n  \"headerTextValue\": \"\",\n  \"adminTemplateCss\": \"\",\n  \"adminTemplateHtm\": \"\",\n  \"publicTemplateCss\": \"\",\n  \"publicTemplateHtm\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_calendar",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/calendar",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "calendar"
          ]
        },
        "description": "Tool to update an existing calendar feed in ActiveCampaign. Use when you need to modify calendar properties like title, type, or notification settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"type\": \"\",\n  \"title\": \"\",\n  \"notification\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_configs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/configs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "configs"
          ]
        },
        "description": "Tool to update an existing configuration in ActiveCampaign. Use when you need to modify configuration settings like pagination preferences or onboarding states for users.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"config\": {},\n  \"config_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "connection"
          ]
        },
        "description": "Tool to update an existing connection in ActiveCampaign. Use when you need to modify connection details such as service name, external ID, display name, logo URL, or link URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"linkUrl\": \"\",\n  \"logoUrl\": \"\",\n  \"service\": \"\",\n  \"externalid\": \"\",\n  \"connection_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact"
          ]
        },
        "description": "Update an existing contact in ActiveCampaign by ID. Use when you need to modify specific fields of a contact such as email, name, or phone number. Note: Contact-Organization relationships are now mana",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"lastName\": \"\",\n  \"firstName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_contact_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "deals"
          ]
        },
        "description": "Tool to update an existing secondary contact (contact-deal association) in ActiveCampaign. Use when you need to modify the contact, deal, or role assignment for a secondary contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"deal\": 0,\n  \"role\": 0,\n  \"contact\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "custom",
            "field"
          ]
        },
        "description": "Tool to update an existing custom field in ActiveCampaign. Use when you need to modify field properties such as label, type, options, default value, visibility, or display order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fieldId\": 0,\n  \"fieldType\": \"\",\n  \"fieldLabel\": \"\",\n  \"isRequired\": false,\n  \"displayOrder\": 0,\n  \"fieldDefault\": \"\",\n  \"fieldOptions\": \"\",\n  \"isFormVisible\": false,\n  \"fieldDefaultCurrency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_custom_field_field_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/custom/field/field/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "custom",
            "field",
            "field",
            "group"
          ]
        },
        "description": "Tool to update a custom field field group member in ActiveCampaign. Use when you need to change the display order or group association of a custom field within a field group.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rel_id\": \"\",\n  \"group_id\": \"\",\n  \"ordernum\": 0,\n  \"group_member_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_custom_field_value_for_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/custom/field/value/for/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "custom",
            "field",
            "value",
            "for",
            "contact"
          ]
        },
        "description": "Tool to update a custom field value for a contact in ActiveCampaign. Use when you need to set or modify a specific custom field's value for a given contact, such as updating subscription tier, prefere",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field\": 0,\n  \"value\": \"\",\n  \"contact\": 0,\n  \"fieldCurrency\": \"\",\n  \"field_value_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_customer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/customer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "customer"
          ]
        },
        "description": "Tool to update an existing e-commerce customer in ActiveCampaign. Use when you need to modify customer details such as email, external ID, connection ID, or marketing preferences.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"externalid\": \"\",\n  \"customer_id\": \"\",\n  \"connectionid\": 0,\n  \"acceptsMarketing\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_custom_field_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/custom/field/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "custom",
            "field",
            "data"
          ]
        },
        "description": "Updates a custom deal field value in ActiveCampaign. Use when you need to modify an existing custom field value for a deal. Requires deal permission and pipeline-specific permission.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"fieldValue\": \"\",\n  \"fieldCurrency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_custom_field_meta",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/custom/field/meta",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "custom",
            "field",
            "meta"
          ]
        },
        "description": "Updates a custom deal field metadata in ActiveCampaign. Use when you need to modify the definition of a custom field (label, options, default value, visibility, display order). Requires deal managemen",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"fieldLabel\": \"\",\n  \"displayOrder\": 0,\n  \"fieldDefault\": \"\",\n  \"fieldOptions\": \"\",\n  \"isFormVisible\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "groups"
          ]
        },
        "description": "Tool to update an existing pipeline (deal group) in ActiveCampaign. Use when you need to modify pipeline properties such as the title, currency, or permission settings. Only the fields provided in the",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"dealGroup\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_owners_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/owners/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "owners",
            "bulk"
          ]
        },
        "description": "Tool to bulk update deal owners in ActiveCampaign. Use when you need to reassign multiple deals to new owners in a single API call. Requires deal management permissions, pipeline-specific permissions,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"deals\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_stage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/stage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "stage"
          ]
        },
        "description": "Tool to update an existing stage in an ActiveCampaign deal pipeline. Use when you need to modify a stage's title, move it to a different pipeline, or change its display order.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"title\": \"\",\n  \"pipeline\": 0,\n  \"displayOrder\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_task",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/task",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "task"
          ]
        },
        "description": "Tool to update an existing task in ActiveCampaign. Use when you need to modify task details such as title, description, due date, assignee, status, or associated records (deal, contact, account).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"deal\": 0,\n  \"note\": \"\",\n  \"owner\": 0,\n  \"title\": \"\",\n  \"account\": 0,\n  \"contact\": 0,\n  \"duedate\": \"\",\n  \"tasktype\": 0,\n  \"dealTaskStatus\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_deal_task_type",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/deal/task/type",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "deal",
            "task",
            "type"
          ]
        },
        "description": "Tool to update an existing deal task type in ActiveCampaign. Use when you need to modify the title or status of a task type used for categorizing deal tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"title\": \"\",\n  \"status\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_dealstages_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/dealstages/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "dealstages",
            "deals"
          ]
        },
        "description": "Tool to move all deals from one stage to another stage in ActiveCampaign. Use when you need to bulk-move all deals in a specific stage to a different stage within the same pipeline. The source and tar",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"deal\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_edit_variable",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/edit/variable",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "edit",
            "variable"
          ]
        },
        "description": "Tool to edit an existing personalization variable in ActiveCampaign. Use when you need to update the name, tag, content, format, or associated lists of a variable.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"variable_id\": \"\",\n  \"personalization\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_event_tracking_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/event/tracking/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "event",
            "tracking",
            "status"
          ]
        },
        "description": "Tool to enable or disable event tracking for your ActiveCampaign account. Use this to toggle event tracking on or off based on your tracking requirements.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"eventTracking\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_field_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/field/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "field",
            "value"
          ]
        },
        "description": "Tool to update a custom field value by its field value ID in ActiveCampaign. Use when you need to modify an existing field value record directly. Datetime field values are converted to the account's t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"field\": 0,\n  \"value\": \"\",\n  \"contact\": 0,\n  \"currency\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "group"
          ]
        },
        "description": "Tool to update an existing permission group in ActiveCampaign. Use when you need to modify a group's title or description.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"title\": \"\",\n  \"descript\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "message"
          ]
        },
        "description": "Tool to update an existing message in ActiveCampaign. Use when you need to modify message properties such as subject line, sender information, content, or other email configuration settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"html\": \"\",\n  \"name\": \"\",\n  \"text\": \"\",\n  \"format\": \"\",\n  \"reply2\": \"\",\n  \"charset\": \"\",\n  \"subject\": \"\",\n  \"encoding\": \"\",\n  \"fromname\": \"\",\n  \"priority\": 0,\n  \"fromemail\": \"\",\n  \"preheader_text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_note",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/note",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "note"
          ]
        },
        "description": "Tool to update an existing note in ActiveCampaign by its ID. Use when you need to modify the content of any existing note. This is a generic note update tool that works for notes related to contacts, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"note\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "product"
          ]
        },
        "description": "Tool to update an existing product in ActiveCampaign's e-commerce system using GraphQL. Use when you need to modify product details like name, store ID, or connection association.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"product\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_saved_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/saved/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "saved",
            "response"
          ]
        },
        "description": "Tool to update an existing saved response in ActiveCampaign. Use when you need to modify the title, subject, or body of a saved response template.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"savedResponse\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "schema"
          ]
        },
        "description": "Tool to update a custom object schema in ActiveCampaign. Use when you need to modify schema properties or add new options to dropdown/multi-select fields. Note: For child schemas, you can only add new",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema\": {},\n  \"schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_segments_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/segments/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "segments",
            "v2"
          ]
        },
        "description": "Tool to update existing segments in ActiveCampaign using the V2 segments API. Use when you need to modify segment configurations, including filtering conditions, descriptions, or metadata. The segment",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\",\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_segments_v2_created_date",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/segments/v2/created/date",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "segments",
            "v2",
            "created",
            "date"
          ]
        },
        "description": "Tool to revert a segment to how it looked at a specific point in time in ActiveCampaign. Use when you need to restore a segment to a previous state using a historic timestamp. Only segments with non-n",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"segment\": {},\n  \"timestamp\": \"\",\n  \"segment_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_site_tracking",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/site/tracking",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "site",
            "tracking"
          ]
        },
        "description": "Tool to enable or disable site tracking for your ActiveCampaign account. Use this when you need to toggle site tracking functionality on or off.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user"
          ]
        },
        "description": "Tool to update an existing ActiveCampaign user (team member/staff account) by ID. Use when you need to modify user details such as name, email, phone, username, or group assignment. Group assignment i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"group\": 0,\n  \"phone\": \"\",\n  \"user_id\": 0,\n  \"lastName\": \"\",\n  \"username\": \"\",\n  \"firstName\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_update_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook"
          ]
        },
        "description": "Update an existing webhook in ActiveCampaign to modify its configuration such as URL, events, or sources. Use this when you need to change the settings of an already created webhook.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"url\": \"\",\n  \"name\": \"\",\n  \"events\": \"\",\n  \"actions\": \"\",\n  \"sources\": \"\",\n  \"externalid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_upsert_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "account"
          ]
        },
        "description": "Creates a new account or updates an existing one in ActiveCampaign based on the account name. This action searches for an account by name and either: - Updates the existing account if found (modifies ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": 0,\n  \"fields\": \"\",\n  \"accountUrl\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_upsert_order",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/order",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "order"
          ]
        },
        "description": "Create a new order or update an existing order in ActiveCampaign. Existence is determined by the combination of legacyConnectionId and storeOrderId. Use this to sync order data from your e-commerce pl",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"notes\": \"\",\n  \"cart_id\": \"\",\n  \"currency\": \"\",\n  \"order_url\": \"\",\n  \"location_id\": \"\",\n  \"final_amount\": 0,\n  \"order_number\": \"\",\n  \"store_status\": \"\",\n  \"is_test_order\": false,\n  \"sales_channel\": \"\",\n  \"store_order_id\": \"\",\n  \"creation_source\": \"\",\n  \"customer_locale\": \"\",\n  \"shipping_amount\": 0,\n  \"shipping_method\": \"\",\n  \"accepts_marketing\": false,\n  \"normalized_status\": \"\",\n  \"store_customer_id\": \"\",\n  \"store_created_date\": \"\",\n  \"store_modified_date\": \"\",\n  \"legacy_connection_id\": 0,\n  \"store_external_order_id\": \"\",\n  \"created_by_recurring_payment\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_upsert_orders_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/orders/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "orders",
            "bulk"
          ]
        },
        "description": "Insert multiple orders or update them if they already exist in ActiveCampaign. This action uses the GraphQL bulkUpsertOrders mutation to synchronously create or update multiple e-commerce orders in a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orders\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_upsert_orders_bulk_async",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/orders/bulk/async",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "orders",
            "bulk",
            "async"
          ]
        },
        "description": "Tool to insert or update multiple orders asynchronously in ActiveCampaign with high throughput. This action performs data store writes completely asynchronously, making it much faster than synchronous",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orders\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_upsert_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "products"
          ]
        },
        "description": "Create or update multiple products in a single request using ActiveCampaign's GraphQL API. This action uses the bulkUpsertProducts mutation to efficiently create or update multiple products at once. T",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"products\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "active_campaign_upsert_recurring_payments_bulk",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/recurring/payments/bulk",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "recurring",
            "payments",
            "bulk"
          ]
        },
        "description": "Create or update multiple recurring payments asynchronously in ActiveCampaign. Use this action to sync subscription data from your e-commerce platform to ActiveCampaign for automated marketing and cus",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"recurring_payments\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}