GET /manager/chatrooms/{id}

Path parameters

  • id integer Required

    The chatroom id

Responses

  • 200 application/json

    Returns the chatroom

    Hide response attribute Show response attribute object
    • messages array
  • 403

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

GET /manager/chatrooms/{id}
curl \
 --request GET 'https://domain.tld/api/v2/manager/chatrooms/{id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "messages": []
}