application/json

Body

  • visibility_chat number

    Values are 1 or 2.

  • images array
  • names array

Responses

  • 201 application/json

    returns the created brand tag

    Hide response attributes Show response attributes object
    • id_brand_tag integer(int32)
    • visibility_chat integer
    • name string
    • image string
    • images array
    • names array
  • 403

    Forbidden - You don't have permission to access this route

POST /manager/brand-tags
curl \
 --request POST 'https://domain.tld/api/v2/manager/brand-tags' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"visibility_chat":1,"images":[],"names":[]}'
Request examples
{
  "visibility_chat": 1,
  "images": [],
  "names": []
}
Response examples (201)
{
  "id_brand_tag": 42,
  "visibility_chat": 0,
  "name": "groupe",
  "image": "https://superimage.com",
  "images": [],
  "names": []
}