Reference
- Asana
- Azure DevOps
- Box
- ClickUp
- GitHub
- Gmail
- Google Calendar
- POSTCalendar Create Event
- POSTCalendar Update Event
- POSTCalendar List Events
- POSTCalendar Get Event By ID
- POSTCalendar Delete Event
- POSTCalendar Get Contacts
- POSTCalendar Search Contacts
- POSTCalendar List Directory People
- POSTCalendar Search Directory People
- POSTCalendar List Other Contacts
- POSTCalendar Search Other Contacts
- POSTCalendar Get Availability
- POST
- Google Drive
- Google Sheets
- HubSpot
- Jira
- Marketo
- Notion
- Microsoft Outlook
- Salesforce
- Shopify
- Slack
- Zendesk
- Zoom
Calendar Create Event
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GOOGLE_CALENDAR_CREATE_EVENT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "GOOGLE_CALENDAR_CREATE_EVENT",
"parameters": {
"eventName": "<string>",
"startTime": "<string>",
"endTime": "<string>",
"calendar": "<string>",
"attendees": "<string>",
"eventLocation": "<string>",
"eventDescription": "<string>",
"eventId": "<string>",
"includeMeetLink": true
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
Event name
Start time : Accepts Unix timestamp or ISO8601 date formats.
End time : Defaults to one hour after the start time if left blank.
Calendar : Use Connect Portal Workflow Settings to allow users to select which calendar the event will be added to. Defaults to the user’s primary calendar if left blank.
Attendees : Accepts an array of email addresses or email addresses separated by commas.
Event location
Event description
Event ID : An ID from your application to associate this event with. You can use this ID to sync updates to this event later.
Include Google Meet link? : Automatically creates Google Meet conference link for this event.
Response
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#GOOGLE_CALENDAR_CREATE_EVENT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "GOOGLE_CALENDAR_CREATE_EVENT",
"parameters": {
"eventName": "<string>",
"startTime": "<string>",
"endTime": "<string>",
"calendar": "<string>",
"attendees": "<string>",
"eventLocation": "<string>",
"eventDescription": "<string>",
"eventId": "<string>",
"includeMeetLink": true
}
}'