Regions

Get Theme Regions

GET /content/regions

Request

Returns a list of unique Theme Regions in a file.

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.
  • template_file in query - string
    required
    The template file, for example: templateFile=pages/home.
  • channel_id in query - string
    The channel ID.

example

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

Response

Body

object | application/json
  • data
    array[object]

  • meta
    object

    Response metadata.

response

{
"data": [
{
"name": "header_bottom"
},
{
"name": "category_header_banner"
}
],
"meta": {}
}
Did you find what you were looking for?