> ## Documentation Index
> Fetch the complete documentation index at: https://docs.toingg.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Cal.com info

## Overview

The "Get Cal.com Info" endpoint allows users to retrieve information about Cal.com integrations added to their Toingg account. By sending a POST request to the `/get_cal_com_info` endpoint, users can access details such as meeting times, participants, and other relevant scheduling information. This functionality is crucial for reviewing and managing Cal.com calendar integrations, ensuring that scheduling is efficient and aligned with user needs.

#### Example cURL Request

```bash theme={null}
curl -X GET \
 'https://api.toingg.com/api/v3/meetings/get_cal_com_info?meeting_id=YOUR_MEETING_ID' \
 -H 'accept: application/json' \
 -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

````yaml GET /get_cal_com_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_cal_com_info:
    get:
      tags:
        - Meeting handling
      summary: Get Cal Com Info
      operationId: get_cal_com_info_get_cal_com_info_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````