Get Chat

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

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

Path parameters

  • chat_id string Required

    Chat id

Responses

  • 200 application/json

    Success Response

    Hide response attributes Show response attributes object
    • id string Required
    • name string Required
    • type string Required
    • description string Required
    • team string Required
    • project string Required
    • is_self boolean Required
    • members object Required
      Hide members attributes Show members attributes object
      • id string Required
      • is_owner boolean Required
      • is_muted boolean Required
      • joined boolean Required
    • created_at string(date-time) Required
    • last_message_at string(date-time) Required
    • zoom_id string Required
    • zoom_password string Required
    • zoom_join_url string Required
    • webex_id string Required
    • webex_password string Required
    • webex_join_url string Required
    • pinned_message string Required
    • pinned_by string Required
    • meeting_type string Required
  • 401

    The client request has not been completed because it lacks valid authentication credentials for the requested resource.

  • 403

    The client does not have access rights to the content.

  • 405

    The request method is known by the server but is not supported by the target resource.

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"
}