Headers

Query parameters

Responses

GET /chat/brand-tags
curl \
 -X GET https://domain.tld/api/v2/chat/brand-tags \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "X-Popsell-Brand: 3"
Response examples (200)
{
  "current_page": 42,
  "data": [
    {
      "id_brand_tag": 42,
      "date_insert": "2023-10-09T12:12:40.220000Z",
      "date_update": "2023-10-09T12:12:40.220000Z",
      "visibility_chat": 0,
      "name": "groupe",
      "description": "super",
      "image": "https://superimage.com"
    }
  ],
  "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."
}