{
  "info": {
    "name": "Formbricks — mcp.ai",
    "description": "REST API for the Formbricks 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/formbricks",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "formbricks_check_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "health"
          ]
        },
        "description": "Tool to check the health status of the Formbricks API. Use when you need to verify that the API is operational and responding to requests.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_action_class",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/action/class",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "action",
            "class"
          ]
        },
        "description": "Tool to create a new action class. Use when defining custom action logic in your environment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"description\": \"\",\n  \"noCodeConfig\": {},\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_attribute_class",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/attribute/class",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "attribute",
            "class"
          ]
        },
        "description": "Creates a new attribute class (custom contact attribute) in Formbricks. Attribute classes define the schema for contact attributes used for segmentation and personalization. Each attribute must have a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"isUnique\": false,\n  \"description\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_client_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/client/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "client",
            "user"
          ]
        },
        "description": "Tool to create or identify a user within a specified environment. If the user already exists, this will identify them and potentially update user attributes. If they don't exist, it will create a new ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": \"\",\n  \"attributes\": {},\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Creates a new contact in a Formbricks environment. A contact represents a person or entity tracked in Formbricks for survey responses and interactions. The email serves as the unique identifier within",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"attributes\": {},\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_display",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/display",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "display"
          ]
        },
        "description": "Create a display record to track when a survey is shown to users. Displays are used to measure survey view counts and can optionally be linked to a specific user. Use this after obtaining valid survey",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": \"\",\n  \"surveyId\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "response"
          ]
        },
        "description": "Tool to create a response for a survey. Use after collecting all survey answers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ttc\": {},\n  \"data\": {},\n  \"meta\": {},\n  \"endingId\": \"\",\n  \"finished\": false,\n  \"language\": \"\",\n  \"surveyId\": \"\",\n  \"createdAt\": \"\",\n  \"displayId\": \"\",\n  \"updatedAt\": \"\",\n  \"variables\": {},\n  \"singleUseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_create_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "survey"
          ]
        },
        "description": "Tool to create a new survey. Use after defining survey details and questions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"status\": \"\",\n  \"questions\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_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 new webhook. Use when you need to register an external endpoint to receive form response events.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"triggers\": \"\",\n  \"surveyIds\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_delete_attribute_class",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/attribute/class",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "attribute",
            "class"
          ]
        },
        "description": "Tool to delete an attribute class. Use when you need to remove an attribute class by its ID after confirming it's no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_delete_person",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/person",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "person"
          ]
        },
        "description": "Tool to delete a person. Use when you need to remove a person's record from Formbricks after confirming the ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"personId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_delete_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "response"
          ]
        },
        "description": "Tool to delete a survey response by its ID. Use when you need to remove an existing response after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_delete_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "survey"
          ]
        },
        "description": "Deletes a survey from Formbricks by its unique identifier. Use this action when you need to permanently remove a survey. The deletion cannot be undone. Before deletion, ensure you have the correct sur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_delete_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team"
          ]
        },
        "description": "Tool to delete an organization team by its ID. Use when you need to permanently remove a team from an organization. Requires write permissions on the organization. Returns the deleted team's details i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": \"\",\n  \"organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_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 a webhook by ID. Use when you need to remove an existing webhook from Formbricks. Use after confirming the webhook ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_account_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "info"
          ]
        },
        "description": "Retrieves environment information for the authenticated API key. Returns details about the environment (development or production) including the associated project and setup completion status. This is",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_all_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "contacts"
          ]
        },
        "description": "Tool to retrieve all contacts within the organization. Use when you need a complete list of contacts.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_attribute_class",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/attribute/class",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "attribute",
            "class"
          ]
        },
        "description": "Tool to get a specific attribute class by ID. Use when you need to retrieve details of a specific attribute class for inspection or validation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"attributeClassId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_client_contacts_state",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/client/contacts/state",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "client",
            "contacts",
            "state"
          ]
        },
        "description": "Tool to get the current state of a contact including surveys and segment information. Use when you need to retrieve tracking data for a specific user, including their segment memberships, survey displ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_contact_attribute_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/attribute/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "attribute",
            "key"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific contact attribute key by ID (v2 API). Use when you need to inspect the properties of a contact attribute key such as its type, uniqueness require",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contactAttributeKeyId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_contact_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a specific contact by its ID. Use when you need to fetch detailed information about a single contact.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contactId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_me",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/me",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "me"
          ]
        },
        "description": "Tool to retrieve current authenticated organization's and environment details. Use when you need to fetch organization and environment information for the current API key.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_person_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/person/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "person",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve a person by their internal ID in Formbricks. Use when you need detailed information about a specific person, including all their custom attributes. The person ID can be obtained from ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"personId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_responses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/responses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "responses"
          ]
        },
        "description": "Retrieve survey responses with flexible filtering, sorting, and pagination. Use this tool to: - List all responses across surveys or filter by specific surveyId - Filter responses by contactId to see ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"sortBy\": \"\",\n  \"endDate\": \"\",\n  \"surveyId\": \"\",\n  \"contactId\": \"\",\n  \"startDate\": \"\",\n  \"filterDateField\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_roles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/roles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "roles"
          ]
        },
        "description": "Tool to retrieve all available roles in the system. Use when you need system roles for access control.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_get_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook"
          ]
        },
        "description": "Tool to retrieve details of a specific webhook. Use when you need to inspect a webhook's configuration by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_action_classes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/action/classes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "action",
            "classes"
          ]
        },
        "description": "List all action classes in your Formbricks environment. Action classes define trackable user interactions (like clicks, page views, form submissions) that can trigger surveys or be used in targeting l",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_attribute_classes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/attribute/classes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "attribute",
            "classes"
          ]
        },
        "description": "Tool to list all attribute classes. Use when you need to retrieve existing attribute classes for segmentation or management.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_client_environment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/client/environment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "client",
            "environment"
          ]
        },
        "description": "Tool to retrieve environment state for Formbricks SDKs. Use when you need to fetch the complete environment configuration including surveys, action classes, and project settings. Note: This endpoint u",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_contact_attribute_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/attribute/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "attribute",
            "keys"
          ]
        },
        "description": "Tool to retrieve contact attribute keys from Formbricks. Use when you need to list all available contact attributes for segmentation, filtering, or contact management. Supports pagination, sorting, an",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"sortBy\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"environmentId\": \"\",\n  \"filterDateField\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_health",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/health",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "health"
          ]
        },
        "description": "Tool to check the health status of critical application dependencies including database and cache. Use when you need to verify that Formbricks services are operational.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_management_contact_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/management/contact/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "management",
            "contact",
            "attributes"
          ]
        },
        "description": "Tool to retrieve all contact attributes in the environment. Use when you need to view custom data stored for contacts across the organization.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_management_me",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/management/me",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "management",
            "me"
          ]
        },
        "description": "Tool to retrieve authenticated user's environment and project information. Use when you need to get details about the environment associated with the current API key, including project details and set",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_management_people",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/management/people",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "management",
            "people"
          ]
        },
        "description": "Tool to retrieve all people (legacy term for contacts) in the environment. Use when you need a complete list of people with their attributes.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_organization_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "teams"
          ]
        },
        "description": "Tool to retrieve all teams in an organization (v2 API). Use when you need to list teams within a specific organization, with support for pagination, sorting, and date-based filtering. Returns team det",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"sortBy\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"organizationId\": \"\",\n  \"filterDateField\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_organizations_project_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations/project/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations",
            "project",
            "teams"
          ]
        },
        "description": "Tool to list all project-team assignments for an organization (v2 API only). Use when you need to retrieve which teams are assigned to which projects, along with their permission levels. Supports filt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"sortBy\": \"\",\n  \"teamId\": \"\",\n  \"endDate\": \"\",\n  \"projectId\": \"\",\n  \"startDate\": \"\",\n  \"organizationId\": \"\",\n  \"filterDateField\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_surveys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/surveys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "surveys"
          ]
        },
        "description": "List all surveys in the environment. Use this tool to: - Retrieve all surveys with complete configuration details - Access survey questions, endings, triggers, and styling - View survey status and met",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_list_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "webhooks"
          ]
        },
        "description": "List all webhooks configured for the current environment. Returns webhooks with pagination support and optional filtering by survey IDs, date ranges, and sorting. Use this action to retrieve webhook c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"sortBy\": \"\",\n  \"endDate\": \"\",\n  \"startDate\": \"\",\n  \"surveyIds\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_update_contact_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "attributes"
          ]
        },
        "description": "Tool to update a contact's attributes in Formbricks. Use when you need to keep contact information in sync with your app or set custom attributes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userId\": \"\",\n  \"attributes\": {},\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_update_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "response"
          ]
        },
        "description": "Tool to update an existing survey response. Use after identifying the response to modify.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"ttc\": {},\n  \"data\": {},\n  \"meta\": {},\n  \"endingId\": \"\",\n  \"finished\": false,\n  \"language\": \"\",\n  \"surveyId\": \"\",\n  \"contactId\": \"\",\n  \"createdAt\": \"\",\n  \"displayId\": \"\",\n  \"updatedAt\": \"\",\n  \"variables\": {},\n  \"singleUseId\": \"\",\n  \"contactAttributes\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_update_survey",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "survey"
          ]
        },
        "description": "Updates an existing Formbricks survey with new properties. Only include fields you want to modify - all fields except 'id' are optional. Common use cases: - Change survey status (e.g., from 'draft' to",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\",\n  \"delay\": 0,\n  \"status\": \"\",\n  \"endings\": \"\",\n  \"triggers\": \"\",\n  \"languages\": \"\",\n  \"questions\": \"\",\n  \"redirectUrl\": \"\",\n  \"welcomeCard\": {},\n  \"displayLimit\": 0,\n  \"hiddenFields\": {},\n  \"displayOption\": \"\",\n  \"displayPercentage\": 0,\n  \"showLanguageSwitch\": false,\n  \"surveyClosedMessage\": \"\",\n  \"isVerifyEmailEnabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_update_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook"
          ]
        },
        "description": "Tool to update an existing webhook. Use when you need to apply modifications to a webhook's configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"url\": \"\",\n  \"name\": \"\",\n  \"source\": \"\",\n  \"triggers\": \"\",\n  \"surveyIds\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_upload_bulk_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/bulk/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "bulk",
            "contacts"
          ]
        },
        "description": "Upload multiple contacts to a Formbricks environment in bulk (up to 250 per request). Each contact must include an 'email' attribute with a valid email address. Additional attributes like firstName, l",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contacts\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_upload_private_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/private/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "private",
            "file"
          ]
        },
        "description": "Tool to obtain S3 presigned upload data for a private survey file. Use after confirming environmentId and surveyId.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileName\": \"\",\n  \"fileType\": \"\",\n  \"surveyId\": \"\",\n  \"environmentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "formbricks_upload_public_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/public/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "public",
            "file"
          ]
        },
        "description": "Retrieves S3 presigned upload URLs and form fields for uploading a public file to Formbricks storage. Returns signed URL and presigned fields needed to upload files directly to S3. Maximum file size: ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fileName\": \"\",\n  \"fileType\": \"\",\n  \"environmentId\": \"\",\n  \"allowedFileExtensions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}