GET
/
v2
/
organizations
/
{orgId}
/
users
curl --request GET \
  --url https://api.cal.com/v2/organizations/{orgId}/users
{
  "status": "success",
  "data": [
    {
      "id": 1,
      "username": "john_doe",
      "name": "John Doe",
      "email": "[email protected]",
      "emailVerified": "2022-01-01T00:00:00Z",
      "bio": "I am a software developer",
      "avatarUrl": "https://example.com/avatar.jpg",
      "timeZone": "America/New_York",
      "weekStart": "Monday",
      "appTheme": "light",
      "theme": "default",
      "defaultScheduleId": 1,
      "locale": "en-US",
      "timeFormat": 12,
      "hideBranding": false,
      "brandColor": "#ffffff",
      "darkBrandColor": "#000000",
      "allowDynamicBooking": true,
      "createdDate": "2022-01-01T00:00:00Z",
      "verified": true,
      "invitedTo": 1,
      "profile": {
        "id": 1,
        "organizationId": 1,
        "userId": 1,
        "username": "john_doe"
      }
    }
  ]
}

Path Parameters

orgId
number
required

Query Parameters

take
number

The number of items to return

Required range: 1 <= x <= 1000
skip
number

The number of items to skip

Required range: x >= 0
emails
string[]

The email address or an array of email addresses to filter by

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object[]
required