PE
Portfolio Engine
Webhooks/Create New

Create Webhook

Set up a new endpoint to receive data from any source

Basic Info

Your Webhook URL

https://data.montana.ceo/api/hooks/your-webhook
Webhook Type
What kind of data will this webhook receive?
Brand & Location
Which business is this webhook for?
Field Mapping
Map the incoming JSON fields to customer data

These are the JSON field names in the incoming payload. Adjust if your form uses different names.

Tags & Security

Comma-separated tags to automatically add to every profile

Comma-separated domains allowed to call this webhook. Leave empty to allow all.

Example Integration
Copy this code into your website
// JavaScript example
fetch("https://data.montana.ceo/api/hooks/your-webhook", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    email: "customer@example.com",
    name: "John Doe",
    phone: "+14065551234"
  })
});