PATCH /manager/brand-tags/{id}

Path parameters

  • id integer Required

    The brand tag id

application/json

Body Required

  • visibility_chat number

    Values are 1 or 2.

  • images array
  • names array

Responses

  • 200 application/json

    returns the updated brand tag

  • 403

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

  • 404

    Not found - The brand tag does not exist

PATCH /manager/brand-tags/{id}
curl \
 --request PATCH 'https://domain.tld/api/v2/manager/brand-tags/{id}' \
 --header "Content-Type: application/json" \
 --data '{"visibility_chat":1,"images":[],"names":[]}'
Request examples
{
  "visibility_chat": 1,
  "images": [],
  "names": []
}