Users
The users endpoints allows you to CRUD users within your Cal.com instance.
The users endpoints can only be used on self-hosted enterprise instances and not on our hosted platform. Also note that these are ADMIN only API requests
get
http://localhost:3002/v1
/users
Find all users.
get
http://localhost:3002/v1
/users/{userId}
Find a user, returns your user if regular user.
patch
http://localhost:3002/v1
/users/{userId}
Edit an existing user
delete
http://localhost:3002/v1
/users/{userId}
Remove an existing user
post
http://localhost:3002/v1
/users
Creates a new user
Last modified 1mo ago