Blog Tags

Get All Blog Tags

GET /blog/tags

Request

Returns a list of Blog Tags.

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.

example

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

Response

Body

array | application/json

    example

    [
    [
    {
    "tag": "Blog",
    "post_ids": [
    1,
    2,
    4
    ]
    }
    ]
    ]
    Did you find what you were looking for?