Create a brand tag

POST /manager/brand-tags
application/json

Body

  • Values are 1 or 2.

  • images array[object]
    Hide images attributes Show images attributes object
  • names array[object]
    Hide names attributes Show names attributes object

Responses

POST /manager/brand-tags
curl \
 -X POST https://domain.tld/api/v2/manager/brand-tags \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"visibility_chat":1,"images":[{"lang":"en_GB","content":"Hello"}],"names":[{"lang":"en_GB","content":"Hello"}]}'
Request examples
{
  "visibility_chat": 1,
  "images": [
    {
      "lang": "en_GB",
      "content": "Hello"
    }
  ],
  "names": [
    {
      "lang": "en_GB",
      "content": "Hello"
    }
  ]
}
Response examples (201)
{
  "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
  }
}
Response examples (401)
{
  "message": "Unauthorized."
}
Response examples (422)
{
  "message": "field is required! (and 3 more error)",
  "errors": {
    "field": [
      "Error message details here"
    ],
    "additionalProperty1": [
      "Error message details here"
    ],
    "additionalProperty2": [
      "Error message details here"
    ]
  }
}