Themes

themes

Methods

Create Theme ->
post/v4/themes

Description

Custom chat themes

List Themes -> PageResponse<>
get/v4/themes

Description

Lists all themes accessible to the user.

Details

This API can be used to list themes. If a user has access to multiple accounts, all themes from all accounts the user is associated with will be returned.

Security
API Key Header

Example: x-api-key: My API Key

Parameters
account_id: string
Optional
include_archived: boolean
Optional
limit: number
Optional

Maximum number of artifacts to be returned by the given endpoint. Defaults to 100 and cannot be greater than 10k.

page: number
Optional

Page number for pagination to be returned by the given endpoint. Starts at page 1

Response fields
Request example
200Example
Get Theme ->
get/v4/themes/{theme_id}

Description

Gets the details of a theme

Details

This API can be used to get information about a single theme by ID. To use this API, pass in the id that was returned from your Create Theme API call as a path parameter.

Review the response schema to see the fields that will be returned.

Domain types

PaginatedThemes = { current_page, items, items_per_page, 1 more... }
Theme = { id, account_id, created_at, 6 more... }