Get Chat

GET /api/v1.0/chats/{chat_id}

This endpoint fetch the details for chat based on given chat id.

Path parameters

Responses

GET /api/v1.0/chats/{chat_id}
curl \
 -X GET https://openapi.niftypm.com/api/v1.0/chats/{chat_id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "id": "string",
  "name": "string",
  "type": "string",
  "description": "string",
  "team": "string",
  "project": "string",
  "is_self": true,
  "members": {
    "id": "string",
    "is_owner": true,
    "is_muted": true,
    "joined": true
  },
  "created_at": "2023-05-04T09:42:00+00:00",
  "last_message_at": "2023-05-04T09:42:00+00:00",
  "zoom_id": "string",
  "zoom_password": "string",
  "zoom_join_url": "string",
  "webex_id": "string",
  "webex_password": "string",
  "webex_join_url": "string",
  "pinned_message": "string",
  "pinned_by": "string",
  "meeting_type": "string"
}