You can use the me endpoint to get your profile details
Me Object
| Attribute | Description |
|---|---|
| id | integer The ID of the user, generated automatically |
| username | string The username of the user |
| name | string The name of the user |
The email of the user | |
| emailVerified | DateTime The date and time when the user's email was verified |
| bio | string The biography of the user |
| avatar | string The avatar URL of the user |
| timeZone | string The time zone of the user |
| weekStart | string The start day of the week for the user |
| endTime | integer The end time for the user's availability |
| bufferTime | integer The buffer time for the user |
| appTheme | string The app theme for the user |
| theme | string The booking page theme for the user |
| defaultScheduleId | integer The ID of the default schedule for the user |
| locale | string The locale of the user |
| timeFormat | integer The time format for the user |
| hideBranding | boolean Whether to hide branding for the user |
| brandColor | string The brand color for the user |
| darkBrandColor | string The dark brand color for the user |
| allowDynamicBooking | boolean Whether the user allows dynamic booking |
| createdDate | DateTime The date when the user was created |
| verified | boolean Whether the user is verified |
| invitedTo | integer The ID of the event to which the user was invited |
| role | UserPermissionRole The role of the user |
Example Me Object
{
"id": 1,
"username": "johndoe",
"name": "John Doe",
"email": "john.doe@example.com",
"emailVerified": "2024-08-01T12:00:00Z",
"bio": "Software engineer with a passion for open-source technologies.",
"avatar": "https://example.com/avatar/johndoe.jpg",
"timeZone": "America/New_York",
"weekStart": "Monday",
"endTime": 1380,
"bufferTime": 15,
"appTheme": "light",
"theme": "modern",
"defaultScheduleId": 101,
"locale": "en-US",
"timeFormat": 24,
"hideBranding": true,
"brandColor": "#FF5733",
"darkBrandColor": "#C70039",
"allowDynamicBooking": true,
"createdDate": "2024-07-15T09:30:00Z",
"verified": true,
"invitedTo": 1001,
"role": "ADMIN"
}
Get your profile details
GET
/me