> ## Documentation Index
> Fetch the complete documentation index at: https://help.hoopai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Location Update | Webhook Events

> Fires when an existing account (location) is updated under your organization.

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

| Field             | Type     | Description                                                           |
| ----------------- | -------- | --------------------------------------------------------------------- |
| `type`            | `string` | Always `"LocationUpdate"`                                             |
| `id`              | `string` | Unique identifier for the updated 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

```json theme={null}
{
  "type": "LocationUpdate",
  "id": "ve9EPM428h8vShlRW1KT",
  "companyId": "otg8dTQqGLh3Q6iQI55w",
  "name": "Loram ipsum",
  "email": "mailer@example.com",
  "stripeProductId": "prod_xyz123abc"
}
```

## Related

* [Location Create](/api-reference/webhooks/location-create) — fires when a new account is provisioned
* [Accounts API](/api-reference/locations/overview) — manage and retrieve account details
