Skip to main content
The LocationUpdate event fires whenever an existing account’s details are modified in the HoopAI platform. This event is available exclusively to Company Level Apps. Use it to keep external records in sync when an account’s name, email, or billing plan changes.

Payload

FieldTypeDescription
typestringAlways "LocationUpdate"
idstringUnique identifier for the updated account
namestringDisplay name of the account
emailstringPrimary email address associated with the account
companyIdstringCompany ID that owns this account
stripeProductIdstringStripe product ID linked to the account’s billing plan, if applicable

Example payload

{
  "type": "LocationUpdate",
  "id": "ve9EPM428h8vShlRW1KT",
  "companyId": "otg8dTQqGLh3Q6iQI55w",
  "name": "Loram ipsum",
  "email": "mailer@example.com",
  "stripeProductId": "prod_xyz123abc"
}
Last modified on March 5, 2026