{
  "info": {
    "name": "Iterate — mcp.ai",
    "description": "REST API for the Iterate 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/iterate",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "iterate_add_survey_recipient",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/survey/recipient",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "survey",
            "recipient"
          ]
        },
        "description": "Add one email recipient to a survey for a later send without sending the survey now.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"last_name\": \"\",\n  \"survey_id\": \"\",\n  \"first_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_anonymize_company_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/anonymize/company/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "anonymize",
            "company",
            "user"
          ]
        },
        "description": "Irreversibly remove one Iterate user's email and attributes while retaining survey responses. Optionally also remove response properties. Requires an exact user ID and explicit confirm_anonymization=t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"confirm_anonymization\": false,\n  \"include_response_properties\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_bulk_anonymize_company_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/anonymize/company/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "anonymize",
            "company",
            "users"
          ]
        },
        "description": "Irreversibly remove identifying data from every Iterate company user matching at least one explicit email, external-ID, or typed user-property selector while retaining survey responses. Requires confi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\",\n  \"external_ids\": \"\",\n  \"user_properties\": \"\",\n  \"confirm_bulk_anonymization\": false,\n  \"include_response_properties\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_bulk_delete_company_user_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/delete/company/user/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "delete",
            "company",
            "user",
            "data"
          ]
        },
        "description": "Permanently delete every matching Iterate company user and all matching users' survey responses using explicit non-empty selectors. This cannot be undone and requires confirm_bulk_permanent_deletion=t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"emails\": \"\",\n  \"external_ids\": \"\",\n  \"user_properties\": \"\",\n  \"confirm_bulk_permanent_deletion\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_delete_company_user_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/company/user/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "company",
            "user",
            "data"
          ]
        },
        "description": "Permanently delete one Iterate user object and all of that user's survey responses. This cannot be undone and requires an exact user ID plus explicit confirm_permanent_deletion=true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"confirm_permanent_deletion\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_get_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "survey"
          ]
        },
        "description": "Return one survey's configuration and questions by survey ID. The action fails when Iterate embeds an error in an HTTP 200 response.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"survey_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_get_survey_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/survey/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "survey",
            "stats"
          ]
        },
        "description": "Return delivery, display, response-count, and response-rate statistics for one survey.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"survey_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_import_survey_recipients",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/import/survey/recipients",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "import",
            "survey",
            "recipients"
          ]
        },
        "description": "Add a non-empty batch of email recipients to a survey without sending it, and return duplicate, failure, and success counts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"survey_id\": \"\",\n  \"recipients\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_list_survey_response_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/survey/response/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "survey",
            "response",
            "groups"
          ]
        },
        "description": "Return one reverse-chronological page of completed survey submissions grouped by user, plus a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"survey_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_list_survey_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/survey/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "survey",
            "responses"
          ]
        },
        "description": "Return one reverse-chronological page of individual answers for a survey, with an optional date range and continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"end_date\": 0,\n  \"survey_id\": \"\",\n  \"start_date\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_list_surveys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/surveys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "surveys"
          ]
        },
        "description": "Return all surveys available to the connected Iterate API key, including the survey and company IDs needed by other tools.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_search_company_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/company/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "company",
            "users"
          ]
        },
        "description": "Find one user in the connected Iterate company by email, external ID, or one typed user property and return survey participation totals.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"external_id\": \"\",\n  \"user_property_name\": \"\",\n  \"user_property_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "iterate_send_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "survey"
          ]
        },
        "description": "Irreversibly send or schedule an email survey to one specified recipient or every previously added recipient. Requires an explicit audience and confirmation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"send_at\": \"\",\n  \"audience\": \"\",\n  \"last_name\": \"\",\n  \"survey_id\": \"\",\n  \"first_name\": \"\",\n  \"confirm_send\": false,\n  \"custom_fields\": {},\n  \"delay_seconds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}