Regions
Get Theme Regions
GET https://api.bigcommerce.com/stores/{store_hash}/v3/content/regionsRequest
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 - stringrequiredThe MIME type of the response body.
- template_file in query - stringrequiredThe template file, for example:
templateFile=pages/home
. - channel_id in query - stringThe 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
dataarray[object]
response
{
"data": [
{
"name": "header_bottom"
},
{
"name": "category_header_banner"
}
],
"meta": {}
}
Did you find what you were looking for?