GET
/
team_members
List all team members
curl --request GET \
  --url https://{workspace}.neetocal.com/api/external/v1/team_members \
  --header 'X-Api-Key: <x-api-key>'
{
  "team_members": [
    {
      "id": "<string>",
      "email": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "time_zone": "<string>",
      "profile_image_url": "<string>",
      "active": true,
      "organization_role": "<string>"
    }
  ],
  "pagination": {
    "total_records": 123,
    "total_pages": 123,
    "current_page_number": 123,
    "page_size": 123
  }
}
Replace {your-workspace} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying your subdomain.

Headers

X-Api-Key
string
required

You can generate an API key from the NeetoCal API Keys dashboard.

Response

200
application/json

OK - Request succeeded

The response is of type object.