Return single Chatroom

GET /api/cp/chat/chatroom/{identifier}

Path parameters

  • identifier string Required

Query parameters

  • iw-build-id string

    build id of the client

  • iw-package-id string

    package id of the client

Responses

  • 200 application/json

    Return single Chatroom

    Hide response attributes Show response attributes object
    • id integer
    • notification_token string
    • name string
    • image_url string
GET /api/cp/chat/chatroom/{identifier}
curl \
 --request GET 'https://replace-with-own-host.iw-erp.de/api/cp/chat/chatroom/{identifier}' \
 --header "x-session-token: $API_KEY"
Response examples (200)
{
  "id": 42,
  "notification_token": "string",
  "name": "string",
  "image_url": "string"
}