Skip to main content
Your Location ID is the unique identifier for your HoopAI account (workspace). Almost every API endpoint requires it — either as a query parameter or a field in the request body.
Your Location ID looks like this: 7jgDexejcVMu5NvJKKDG — a 20-character alphanumeric string.

Where to find it

1

Open Settings

In your HoopAI dashboard, click the Settings icon in the left sidebar.
2

Go to Business Profile

Under Business Info, select Business Profile.
3

Copy your Location ID

Your Location ID is displayed at the top right of the page next to the Location ID label.
Location ID in Business Profile settings
Click the copy icon to copy it to your clipboard.

How it’s used in API requests

Your Location ID scopes every request to your specific account. As a query parameter (GET requests):
GET /contacts/?locationId=YOUR_LOCATION_ID
In the request body (POST/PUT requests):
{
  "locationId": "YOUR_LOCATION_ID",
  "name": "Jane Smith",
  "email": "jane@example.com"
}
Throughout the API reference you’ll see locationId and “account” used interchangeably. They refer to the same thing.

Next step

Create an API key

Generate a Private Integration key to authenticate your requests
Last modified on March 6, 2026