Skip to main content
GET
/
users
/
me
Get the current user’s profile.
curl --request GET \
  --url https://api.calendbook.com/users/me \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "email": "[email protected]",
  "avatar": "<string>",
  "language": "<string>",
  "timezone": "<string>",
  "notification_settings": {
    "guest_notification_broker": "<string>",
    "notification_broker": "<string>",
    "pending_actions": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Response

name
string
email
string<email>
avatar
string
language
string
timezone
string
notification_settings
object