The LocationCreate event fires whenever a new account is provisioned under your organization in the HoopAI platform. This event is available exclusively to Company Level Apps. Use it to trigger provisioning workflows, initialize default settings for the new account, or sync account records to external billing or CRM systems.
Payload
| Field | Type | Description |
|---|
type | string | Always "LocationCreate" |
id | string | Unique identifier for the newly created account |
name | string | Display name of the account |
email | string | Primary email address associated with the account |
companyId | string | Company ID that owns this account |
stripeProductId | string | Stripe product ID linked to the account’s billing plan, if applicable |
Example payload
{
"type": "LocationCreate",
"id": "ve9EPM428h8vShlRW1KT",
"companyId": "otg8dTQqGLh3Q6iQI55w",
"name": "Loram ipsum",
"email": "mailer@example.com",
"stripeProductId": "prod_xyz123abc"
}
Last modified on March 5, 2026