Get all brand tags

GET /manager/brand-tags

Query parameters

  • sort string

    example :to sort the brand tags by id_brand_tag (-id_brand_tag: descending, id_brand_tag: ascending)

    Values are id_brand_tag or visibility_chat.

  • page integer

    page number

  • per_page integer

    number of items per page

  • retrieve brand tags by visibility type

    Values are 1 or 2.

Responses

GET /manager/brand-tags
curl \
 -X GET https://domain.tld/api/v2/manager/brand-tags \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "current_page": 42,
  "data": [
    {
      "id_brand_tag": 42,
      "visibility_chat": 0,
      "name": "groupe",
      "image": "https://superimage.com",
      "images": [
        {
          "id_i18n_content": 42,
          "lang": "en_GB",
          "content": "Hello"
        }
      ],
      "names": [
        {
          "id_i18n_content": 42,
          "lang": "en_GB",
          "content": "Hello"
        }
      ],
      "members": {
        "id_ambassador": 42,
        "image": "string",
        "firstname": "string",
        "lastname": "string",
        "username": "string",
        "email": "string",
        "email_tmp": "string",
        "active": 42,
        "status": 42,
        "online": true,
        "last_action_date": "2025-05-04T09:42:00+00:00",
        "customer_id": "string",
        "anonymized": true
      }
    }
  ],
  "first_page_url": "string",
  "from": 42,
  "last_page": 42,
  "last_page_url": "string",
  "links": [
    {
      "url": "string",
      "label": "string",
      "active": true
    }
  ],
  "next_page_url": "string",
  "path": "string",
  "per_page": 42,
  "prev_page_url": "string",
  "to": 42,
  "total": 42
}
Response examples (401)
{
  "message": "Unauthorized."
}