Skip to main content
POST
/
oauth
/
token
Get access token
curl --request POST \
  --url https://auth.calendly.com/oauth/token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data grant_type=authorization_code \
  --data 'client_id=<string>' \
  --data 'code=<string>' \
  --data 'code_verifier=<string>' \
  --data 'redirect_uri=<string>' \
  --data 'client_secret=<string>'
{
  "access_token": "<string>",
  "refresh_token": "<string>",
  "token_type": "Bearer",
  "scope": "<string>",
  "expires_in": 123,
  "created_at": 123,
  "owner": "<string>",
  "organization": "<string>"
}

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

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/x-www-form-urlencoded
grant_type
enum<string>
required
Available options:
authorization_code
client_id
string
required
code
string
required
code_verifier
string
required
redirect_uri
string<uri>
required
client_secret
string

Response

200 - application/json

OK

access_token
string
refresh_token
string
token_type
enum<string>
Available options:
Bearer
scope
string
expires_in
integer
created_at
integer
owner
string<uri>
organization
string<uri>