POST
/
add_cal_com_info
curl --request POST \
  --url https://api.toingg.com/api/v3/add_cal_com_info \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "api_key": "<string>",
  "eventId": 123,
  "timezone": "Asia/Kolkata"
}'
"<any>"

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

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

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Response

200
application/json
Successful Response

The response is of type any.