Skip to main content
The New Customer Webhook is triggered when a new customer is created in your store through FlexyPass. This webhook provides real-time customer data including contact details, enabling businesses to sync customer information with external CRMs, marketing platforms, or loyalty programs. By leveraging this integration, brands can automate onboarding workflows, send welcome messages, and build personalized customer experiences from the very first interaction.

Headers

X-Flexype-Authorization
string
A secret key used to verify that the webhook request originated from FlexyPe. Ensure this token is validated to prevent unauthorized access.
X-Webhook-Version
string
The version of the webhook payload. Here, the value will be 2025-09.
X-Event-Id
string
The unique identifier for the event that triggered this webhook.

Body

store_domain
string
The Shopify domain/subdomain for the merchant store.
shopify_domain
string
The Shopify domain for the merchant store.
customer
object
Details of the newly created customer.
{
  "store_domain": "my-store.myshopify.com",
  "shopify_domain": "my-store.myshopify.com",
  "customer": {
    "shopify_customer_id": "gid://shopify/Customer/123456789",
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "[email protected]",
    "phone": "9876543210",
    "dial_code": "91"
  }
}