Get current user
documentedRetrieve the current API user's details (including the organization URI) for building integrations.
GET /users/meUsersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.calendly.com/users/me" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
# Docs: Calendly API v2 uses GET https://api.calendly.com/users/me with a Bearer token for authentication. See official docs for details. \
# Sources: turn0search1 turn0search6 turn0search0