{
  "info": {
    "name": "Wisepops — mcp.ai",
    "description": "REST API for the Wisepops 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/wisepops",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "wisepops_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to create a webhook to receive real-time data updates when forms are collected in Wisepops. Use when you need to set up automated data synchronization for sign-up, phone, or survey form submissio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event\": \"\",\n  \"target_url\": \"\",\n  \"wisepop_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wisepops_data_privacy_delete_user_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/data/privacy/delete/user/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "data",
            "privacy",
            "delete",
            "user",
            "data"
          ]
        },
        "description": "Tool to automatically delete and suppress data about end-users for GDPR and CCPA compliance. Use when you need to remove user data from the system. Requires at least one identifier (email or phone). W",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"phone\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wisepops_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Tool to delete an existing webhook by its hook_id. Use when you need to remove a webhook that is no longer needed or should be deactivated.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hook_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wisepops_get_wisepops_performance_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/wisepops/performance/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "wisepops",
            "performance",
            "data"
          ]
        },
        "description": "Tool to retrieve a list of your Wisepops with display and conversion metrics. Use when you need to analyze pop-up performance data including display counts, clicks, and email collections.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "wisepops_retrieve_collected_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/collected/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "collected",
            "contacts"
          ]
        },
        "description": "Tool to retrieve contacts collected through Wisepops opt-in forms. Use when you need to fetch contact information with their custom fields and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"wisepop_id\": 0,\n  \"collected_after\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}