For the complete documentation index, see llms.txt. This page is also available as Markdown.

Users

Operations related to users

Get Users

get

Retrieves a paginated list of users for the tenant with optional filters. Use metadata=[campo=valor] format for metadata filtering.

Authorizations
x-api-keystringRequired
Query parameters
pagenumberOptional

Page number for pagination (default: 1)

Example: 1
limitnumberOptional

Number of items per page (default: 10)

Example: 10
emailstringOptional

Filter by email (partial match)

Example: john@example.com
phonestringOptional

Filter by phone (partial match)

Example: +1234567890
Responses
200Success
application/json
statusCodenumberRequiredDefault: 200
countnumberRequired
errorstring · nullableRequired
get
/api/v1/users

Get User Meetings

get

Returns meetings where the user is the owner and/or a participant (via person linked to the user). Paginated.

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired

User ID to list meetings for.

Query parameters
pagenumberOptional

Page number to retrieve.

limitnumberOptional

Number of items per page.

Responses
200Success
application/json
statusCodenumberRequiredDefault: 200
countnumberRequired
errorstring · nullableRequired
get
/api/v1/users/{id}/meetings

Update User Metadata

put

Updates the metadata for a specific user

Authorizations
x-api-keystringRequired
Path parameters
idstringRequired
Body
metadataobjectRequired

Metadata fields to update for the user

Example: {"salesRegion":"South","customerId":"67890"}
Responses
200Success
application/json
statusCodenumberRequiredDefault: 200
countnumberRequired
errorstring · nullableRequired
dataobjectRequired

Updated user metadata

Example: {"salesRegion":"South","customerId":"67890"}
put
/api/v1/users/{id}/metadata

Last updated

Was this helpful?