Core-12
For instructions on how to authenticate to use this endpoint, see API overview.
Endpoints
PATCH | |
DELETE | |
POST | |
GET | |
GET | |
POST | |
DELETE | |
POST | |
GET | |
POST | |
GET | |
PATCH | |
DELETE | |
POST | |
GET | |
GET | |
PATCH |
Update property definitions
Required API key scopes
property_definition:writePath parameters
- idstring
- project_idstring
Request parameters
- descriptionstring
- tagsarray
- property_type
- verifiedboolean
- hiddenboolean
Response
Example request
PATCH /api /projects /:project_id /property_definitions /:idExample response
Status 200
Delete property definitions
Required API key scopes
property_definition:writePath parameters
- idstring
- project_idstring
Example request
DELETE /api /projects /:project_id /property_definitions /:idExample response
Status 204 No response body
Create property definitions bulk update tags
Bulk update tags on multiple objects.
Accepts:
- {"ids": [...], "action": "add"|"remove"|"set", "tags": ["tag1", "tag2"]}
Actions:
- "add": Add tags to existing tags on each object
- "remove": Remove specific tags from each object
- "set": Replace all tags on each object with the provided list
Path parameters
- project_idstring
Request parameters
- idsarray
- action
- tagsarray
Response
Example request
POST /api /projects /:project_id /property_definitions /bulk_update_tagsExample response
Status 200
Retrieve property definitions seen together
Allows a caller to provide a list of event names and a single property name Returns a map of the event names to a boolean representing whether that property has ever been seen with that event_name
Required API key scopes
property_definition:readPath parameters
- project_idstring
Example request
GET /api /projects /:project_id /property_definitions /seen_togetherExample response
Status 200 No response body
List all session recordings sharing
Required API key scopes
sharing_configuration:readPath parameters
- project_idstring
- recording_idstring
Example request
GET /api /projects /:project_id /session_recordings /:recording_id /sharingExample response
Status 200
Create session recordings sharing passwords
Create a new password for the sharing configuration.
Required API key scopes
sharing_configuration:writePath parameters
- project_idstring
- recording_idstring
Request parameters
- enabledboolean
- settings
- password_requiredboolean
Response
Example request
POST /api /projects /:project_id /session_recordings /:recording_id /sharing /passwordsExample response
Status 200
Delete session recordings sharing passwords
Delete a password from the sharing configuration.
Required API key scopes
sharing_configuration:writePath parameters
- password_idstring
- project_idstring
- recording_idstring
Example request
DELETE /api /projects /:project_id /session_recordings /:recording_id /sharing /passwords /:password_idExample response
Status 204 No response body
Create session recordings sharing refresh
Required API key scopes
sharing_configuration:writePath parameters
- project_idstring
- recording_idstring
Request parameters
- enabledboolean
- settings
- password_requiredboolean
Response
Example request
POST /api /projects /:project_id /session_recordings /:recording_id /sharing /refreshExample response
Status 200
List all subscriptions
Required API key scopes
subscription:readPath parameters
- project_idstring
Query parameters
- created_bystring
- dashboardinteger
- insightinteger
- limitinteger
- offsetinteger
- orderingstring
- resource_typestringOne of:
"dashboard""insight" - searchstring
- target_typestringOne of:
"email""slack""webhook"
Response
Example request
GET /api /projects /:project_id /subscriptionsExample response
Status 200
Create subscriptions
Required API key scopes
subscription:writePath parameters
- project_idstring
Request parameters
- dashboardinteger
- insightinteger
- dashboard_export_insightsarray
- target_type
- target_valuestring
- frequency
- intervalinteger
- byweekdayarray
- bysetposinteger
- countinteger
- start_datestring
- until_datestring
- deletedboolean
- titlestring
- integration_idinteger
- invite_messagestring
- summary_enabledboolean
- summary_prompt_guidestring
Response
Example request
POST /api /projects /:project_id /subscriptionsExample response
Status 201
Retrieve subscriptions
Required API key scopes
subscription:readPath parameters
- idinteger
- project_idstring
Response
Example request
GET /api /projects /:project_id /subscriptions /:idExample response
Status 200
Update subscriptions
Required API key scopes
subscription:writePath parameters
- idinteger
- project_idstring
Request parameters
- dashboardinteger
- insightinteger
- dashboard_export_insightsarray
- target_type
- target_valuestring
- frequency
- intervalinteger
- byweekdayarray
- bysetposinteger
- countinteger
- start_datestring
- until_datestring
- deletedboolean
- titlestring
- integration_idinteger
- invite_messagestring
- summary_enabledboolean
- summary_prompt_guidestring
Response
Example request
PATCH /api /projects /:project_id /subscriptions /:idExample response
Status 200
Delete subscriptions
Hard delete of this model is not allowed. Use a patch API call to set "deleted" to true
Required API key scopes
subscription:writePath parameters
- idinteger
- project_idstring
Example request
DELETE /api /projects /:project_id /subscriptions /:idExample response
Status 405 No response body
Create subscriptions test delivery
Required API key scopes
subscription:writePath parameters
- idinteger
- project_idstring
Example request
POST /api /projects /:project_id /subscriptions /:id /test-deliveryExample response
Status 202 Test delivery workflow started
List all users
Required API key scopes
user:readQuery parameters
- emailstring
- is_staffboolean
- limitinteger
- offsetinteger
Response
Example request
GET /api /usersExample response
Status 200
Retrieve users
Retrieve a user's profile and settings. Pass @me as the UUID to fetch the authenticated user; non-staff callers may only access their own account.
Required API key scopes
user:readPath parameters
- uuidstring
Response
Example request
GET /api /users /:uuidExample response
Status 200
Update users
Update one or more of the authenticated user's profile fields or settings.
Required API key scopes
user:writePath parameters
- uuidstring
Request parameters
- first_namestring
- last_namestring
- emailstring
- notification_settingsobject
- anonymize_databoolean
- allow_impersonationboolean
- toolbar_mode
- is_staffboolean
- set_current_organizationstring
- set_current_teamstring
- passwordstring
- current_passwordstring
- events_column_config
- has_seen_product_intro_for
- theme_mode
- hedgehog_config
- allow_sidebar_suggestionsboolean
- shortcut_position
- role_at_organization
- passkeys_enabled_for_2faboolean
Response
Example request
PATCH /api /users /:uuid