Get a chat topic by id (manager)

GET /manager/chat-topics/{id}

Path parameters

  • id integer(int32) Required

    The id of the chat topic

Responses

  • 200 application/json

    Returns the chat topic

    Hide response attributes Show response attributes object
    • id_chat_topic integer
    • color string
    • contents array[object]
      Hide contents attributes Show contents attributes object
      • id_i18n_content integer
      • lang string

        Values are en_GB, fr_FR, es_ES, or de_DE.

      • content string
    • position integer
    • date_insert string(date-time)
    • roles array[string]
    • date_update string(date-time)
    • active boolean
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

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

  • 404

    Not found

GET /manager/chat-topics/{id}
curl \
 --request GET 'https://domain.tld/api/v2/manager/chat-topics/{id}' \
 --header "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."
}