Query parameters

  • page integer

    page number

  • per_page integer

    number of items per page

  • sort string

    example :to sort the chat topic by id or position (-id_chat_topic: descending, id_chat_topic: ascending)

    Values are id_chat_topic or position.

  • retrieve chat topic by active status.

Responses

GET /manager/chat-topics
curl \
 --request GET 'https://domain.tld/api/v2/manager/chat-topics' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "current_page": 42,
  "data": [
    {}
  ],
  "first_page_url": "string",
  "from": 42,
  "last_page": 42,
  "last_page_url": "string",
  "links": [
    {
      "url": "string",
      "label": "string",
      "active": true
    }
  ],
  "next_page_url": "string",
  "path": "string",
  "per_page": 42,
  "prev_page_url": "string",
  "to": 42,
  "total": 42
}
Response examples (401)
{
  "message": "Unauthorized."
}