Get Chat
This endpoint fetch the details for chat based on given chat id.
GET
/api/v1.0/chats/{chat_id}
curl \
--request GET 'https://openapi.niftypm.com/api/v1.0/chats/{chat_id}' \
--header "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": "2025-05-04T09:42:00Z",
"last_message_at": "2025-05-04T09:42:00Z",
"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"
}