Users

The users endpoint allows you to CRUD users within your Cal.com instance.

In self-hosted enterprise instances, user endpoints are exclusively designated for performing Create, Read, Update, and Delete (CRUD) operations. Please note that these endpoints are not accessible on our hosted platform, as they are primarily reserved for administrative API requests. The only exception is the GET request, which permits retrieval of individual user information (non-admin) associated with the originating request.

Find all users

GET

/users

Find a user

GET

/users/{userId}

Edit an existing user

PATCH

/users/{userId}

Remove an existing user

DELETE

/users/{userId}

Create a new user

POST

/users

Was this page helpful?