Path parameters

  • id integer(int32) Required

    The id of the chat topic

Responses

GET /manager/chat-topics/{id}
curl \
 -X GET https://domain.tld/api/v2/manager/chat-topics/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id_chat_topic": 8,
  "color": "#FF0000",
  "contents": [
    {
      "id_i18n_content": 42,
      "lang": "en_GB",
      "content": "Hello"
    }
  ],
  "position": 1,
  "date_insert": "2021-06-01T00:00:00Z",
  "roles": [
    "administrator",
    "seller"
  ],
  "date_update": "2022-06-01T00:00:00Z",
  "active": true
}
Response examples (401)
{
  "message": "Unauthorized."
}