Skip to main content
Genies are voice AI agents managed through our agent system. Each genie has its own system prompt, voice configuration, conversation settings, and optional phone number.
Standard users can only manage their own genies. Admin users can manage all genies and view owner information by passing adminMode: true.

List genies

Retrieves a paginated list of genies with essential fields. Optimized for selects, dropdowns, and summary views.
string
required
Must be "genies"
string
required
Must be "list"
object
boolean
Whether the request succeeded.
object

Get all genies

Retrieves all genies with full configuration using cursor-based pagination. Returns complete genie objects including settings, phone, page, group, and knowledge base data.
string
required
Must be "genies"
string
required
Must be "all"
object
boolean
Whether the request succeeded.
object
When adminMode is true, each genie includes an owner field with id, full_name, and email. Standard users always see owner: null.

Get genie

Retrieves a single genie by ID with its full configuration, including settings, phone number, page, group, and knowledge base.
string
required
Must be "genies"
string
required
Must be "get"
string
required
The UUID of the genie to retrieve.
boolean
Whether the request succeeded.
object

Create genie

Creates a new voice AI genie with the specified configuration. The genie is automatically provisioned in the voice agent system.
string
required
Must be "genies"
string
required
Must be "create"
object
required
boolean
Whether the request succeeded.
string
Confirmation message.
object
Admin users can create genies on behalf of other users by including impersonatedUserId in the data object.

Update genie

Updates an existing genie’s configuration. Supports partial updates — only the fields you include will be changed.
string
required
Must be "genies"
string
required
Must be "update"
string
required
The UUID of the genie to update.
object
required
boolean
Whether the request succeeded.
string
Confirmation message.
object

Delete genie

Permanently deletes a genie, removes it from the voice agent system, and releases any associated phone numbers.
string
required
Must be "genies"
string
required
Must be "delete"
string
required
The UUID of the genie to delete.
boolean
Whether the request succeeded.
string
Confirmation message.
This action is irreversible. The genie, its external agent instance, and any attached phone numbers will be permanently removed.

Clone genie

Creates a copy of an existing genie with all its configuration. Optionally rename the clone and apply text replacements to the system prompt and first message.
string
required
Must be "genies"
string
required
Must be "clone"
string
required
The UUID of the genie to clone.
object
boolean
Whether the request succeeded.
object
Attached knowledge base documents are cloned and linked to the new genie automatically. If a document clone fails (for example due to a transient error), the genie itself is still created — only that document is skipped. Goal associations from the original genie are also copied to the clone.

Reorder genies

Updates the display order of genies. Pass an object mapping genie IDs to their desired position (zero-indexed).
string
required
Must be "genies"
string
required
Must be "reorder"
object
required
boolean
Whether the request succeeded.
string
Confirmation message.

Analytics

Returns conversation analytics per genie — total conversations, recent conversations (last 7 days), and last-used timestamp.
string
required
analytics
object

Response

Returns an array of analytics objects (one per genie):
array

Limits

Returns the genie quota for the authenticated user’s personal account and, if applicable, their workspace (team).
string
required
limits

Response

object

Timeline

Returns a day-by-day conversation count for a genie over a specified date range.
string
required
timeline
string
required
Genie UUID.
object
required

Response


URL

Returns the public URL for a genie’s web page.
string
required
url
string
required
Genie UUID.

Embed code

Returns an HTML embed snippet for embedding a genie on an external website.
string
required
embed-code
string
required
Genie UUID.

Request access

Submits an access request for a private genie. Used when a visitor wants to access a genie they don’t have permission for.
string
required
request-access
string
required
Genie UUID.

Accept invite

Accepts an invitation to access a genie using an access token.
string
required
accept-invite
string
required
Genie UUID.

Error codes