Active Theme

Get a Channel Active Theme

GET /channels/{channel_id}/active-theme

Request

Returns details of the theme active on the specified channel. Does not support active Blueprint (legacy) themes.

Authentication

  • X-Auth-Token in header

Parameters

  • store_hash in path - string
  • Accept in header with default of application/json - string
    required
    The MIME type of the response body.
  • channel_id in path - integer
    required
    The ID of a channel.

example

curl --request GET \
--url 'https://api.bigcommerce.com/stores/[store_hash]/v3/channels/[channel_id]/active-theme' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-Auth-Token: {{token}}'

Response

Body

object | application/json
  • data
    object

    Details about the Channelʼs relationship to Themes.
  • meta
    object

    Response metadata.

Get a single active theme

{
"data": {
"active_theme_uuid": "e3d82ce0-9bae-0133-0de7-525400970412",
"active_theme_configuration_uuid": "1c0962a0-9172-0139-70bc-2a81c0049363",
"active_theme_version_uuid": "b9911770-8a43-0139-f84a-7e39a3a0bc55",
"saved_theme_configuration_uuid": "1c0962a0-9172-0139-70bc-2a81c0049363"
},
"meta": {}
}
Did you find what you were looking for?