The Objects API gives you full control over custom object schemas and their records in the HoopAI Platform. Define entirely new object types with custom labels and fields, then create, read, update, delete, and search individual records against those schemas. Standard objects — such as contacts, opportunities, and companies — are also supported, giving you a unified data layer for all entity types in your account.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.
Base URL
Authentication
Every request must include a bearer token in theAuthorization header and the API version in the Version header.
OAuth scopes
| Scope | Access |
|---|---|
objects/schema.readonly | Read object schema definitions |
objects/schema.write | Create and update object schemas |
objects/record.readonly | Read and search object records |
objects/record.write | Create, update, and delete object records |
Quick start
List all object schemas available in an account:Endpoints
| Method | Path | Description |
|---|---|---|
GET | /objects/ | Get all objects for a location |
POST | /objects/ | Create Custom Object |
GET | /objects/{key} | Get Object Schema by key / id |
PUT | /objects/{key} | Update Object Schema By Key / Id |
POST | /objects/{schemaKey}/records | Create Record |
GET | /objects/{schemaKey}/records/{id} | Get Record By Id |
PUT | /objects/{schemaKey}/records/{id} | Update Record |
DELETE | /objects/{schemaKey}/records/{id} | Delete Record |
POST | /objects/{schemaKey}/records/search | Search Object Records |
Related
- Custom Fields API overview — add custom field definitions to your object schemas
- Associations API overview — define and query relationships between object records
- OAuth 2.0 overview — obtain and refresh access tokens