Skip to main content
POST
/
shares
Create share
curl --request POST \
  --url https://api.calendly.com/shares \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_type": "<string>",
  "name": "<string>",
  "duration": 123,
  "availability_rule": {},
  "period_type": "fixed",
  "max_booking_time": 123,
  "location_configurations": [
    {}
  ]
}
'

Documentation Index

Fetch the complete documentation index at: https://calendly-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.1 with PKCE. Request the minimum scopes your integration needs. See the Scopes catalog for the full list.

Body

application/json
event_type
string<uri>
required
name
string
required
duration
integer
required
availability_rule
object
required
period_type
enum<string>
Available options:
fixed,
rolling
max_booking_time
integer
location_configurations
object[]

Response

201

Created