Users
Creates a new user
Getting Started
Attendees
Availabilities
Booking References
Bookings
Credentials
Destination Calendars
Event Types
Memberships
Schedules
Selected Calendars
Teams
Users
Users
Creates a new user
POST
/
users
curl --request POST \
--url https://api.cal.com/v1/users \
--header 'Content-Type: application/json' \
--data '{
"email": "email@example.com",
"username": "johndoe",
"weekStart": "MONDAY",
"brandColor": "#555555",
"darkBrandColor": "#111111",
"timeZone": "EUROPE/PARIS",
"theme": "LIGHT",
"timeFormat": "TWELVE",
"locale": "FR"
}'
Authorizations
Query Parameters
Your API key
Body
application/json
Create a new user
The body is of type object
.
Response
201
OK, user created
Was this page helpful?
curl --request POST \
--url https://api.cal.com/v1/users \
--header 'Content-Type: application/json' \
--data '{
"email": "email@example.com",
"username": "johndoe",
"weekStart": "MONDAY",
"brandColor": "#555555",
"darkBrandColor": "#111111",
"timeZone": "EUROPE/PARIS",
"theme": "LIGHT",
"timeFormat": "TWELVE",
"locale": "FR"
}'