{
  "info": {
    "name": "Persistiq — mcp.ai",
    "description": "REST API for the Persistiq 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/persistiq",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "persistiq_add_lead_to_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/lead/to/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "lead",
            "to",
            "campaign"
          ]
        },
        "description": "Tool to add a lead to a specified campaign. Use when you have lead details and a campaign ID to enroll the lead into the campaign.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead\": {},\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_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 PersistIQ. Use when you need to set up a new outreach campaign with a specific owner.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owner_id\": \"\",\n  \"campaign_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_create_dnc_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/dnc/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "dnc",
            "domain"
          ]
        },
        "description": "Tool to create a Do Not Contact domain. Use when you need to block emails from being sent to addresses at a specific domain without manual approval.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_create_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "leads"
          ]
        },
        "description": "Tool to bulk create up to 10 leads. Use when you have multiple new contacts and need optional duplicate-handling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"leads\": \"\",\n  \"duplicate_lead_action\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_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 campaigns. Use when you need to fetch multiple campaigns with optional filters and pagination after setting up your filter criteria.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"lead_id\": \"\",\n  \"owner_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_list_dnc_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/dnc/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "dnc",
            "domains"
          ]
        },
        "description": "Tool to list Do Not Contact domains. Use when you need to retrieve all domains marked as DNC.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_list_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events"
          ]
        },
        "description": "Tool to retrieve a list of PersistIQ events. Use when you need to fetch events filtered by group, campaign, lead, user, or time range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead\": \"\",\n  \"page\": 0,\n  \"user\": \"\",\n  \"group\": \"\",\n  \"limit\": 0,\n  \"end_at\": 0,\n  \"campaign\": \"\",\n  \"start_at\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_list_lead_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/lead/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "lead",
            "fields"
          ]
        },
        "description": "Tool to list all lead fields for your company. Use when you need to retrieve available custom lead fields.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_list_lead_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/lead/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "lead",
            "statuses"
          ]
        },
        "description": "Tool to retrieve all lead statuses for your company. Use when you need to list available lead statuses after confirming authentication with PersistIQ.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_list_leads",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/leads",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "leads"
          ]
        },
        "description": "Tool to list leads from PersistIQ. Use when you need to fetch a paginated list of leads, optionally filtering by status or updated_after.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"status\": \"\",\n  \"updated_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_list_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "users"
          ]
        },
        "description": "Tool to list all non-archived users in your company. Use when you need to retrieve user information including id, name, email, activated status, default_mailbox_id, and salesforce_id.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_remove_lead_from_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/lead/from/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "lead",
            "from",
            "campaign"
          ]
        },
        "description": "Tool to remove a lead from a specified campaign. Use when you need to detach a lead from an existing campaign after confirming both IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\",\n  \"campaign_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_update_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "lead"
          ]
        },
        "description": "Tool to update a lead's information. Use when you need to modify fields (status, tags, or custom attributes) of an existing lead. Call after confirming the lead_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"title\": \"\",\n  \"lead_id\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"company_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "persistiq_view_lead",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/view/lead",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "view",
            "lead"
          ]
        },
        "description": "Tool to retrieve a lead by its ID. Use when you have the lead ID and need its detailed information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lead_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}