> ## 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.

# ADD CAL.COM

## Overview

The "Add Cal.com Calendar" endpoint allows users to integrate Cal.com calendar functionalities into their Toingg account to schedule meetings during calls. By sending a POST request to the `/add_cal_com_info` endpoint, users can add calendar details, such as meeting times, participants, and other relevant scheduling information. This functionality is crucial for enhancing communication and coordination during calls, ensuring that meetings are efficiently scheduled and managed. The endpoint supports seamless integration to improve scheduling capabilities and align with user needs.

#### Example cURL Request

```bash theme={null}
curl -X 'POST' \
  'https://api.toingg.com/api/v3/add_cal_com_info' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  -H 'Content-Type: application/json' \
  -d '{
  "api_key": "string",
  "eventId": 0,
  "timezone": "Asia/Kolkata"
}'
```


## OpenAPI

````yaml POST /add_cal_com_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /add_cal_com_info:
    post:
      tags:
        - Meeting handling
      summary: Add Cal Com Info
      operationId: add_cal_com_info_add_cal_com_info_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CalInfo'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    CalInfo:
      properties:
        api_key:
          type: string
          title: Api Key
        eventId:
          type: integer
          title: Eventid
        timezone:
          type: string
          title: Timezone
          default: Asia/Kolkata
      type: object
      required:
        - api_key
        - eventId
      title: CalInfo
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````