v1

latestOpenAPI 3.0.02026-07-2447166133.5 KB
Organization

List all members of the organization

This returns a list of all members of the organization. This includes all teammates and all teams, as well as a reference to the organization itself.

get/organization/members

Query parameters

pageSizeinteger

How many member to return at one time

paginationTokenstring

Token given in a previous response to allow requesting the next page

Example:abcdefghijklmnop

Response

Expected response to a valid request

hasMoreboolean required
paginationTokenstring

Token given in a previous response to allow requesting the next page

totalCountinteger required

Example response

{
  "members": [
    {
      "displayName": "John Doe, MD",
      "email": "provider@example.com",
      "id": "entity_0E5QDGJC03000",
      "type": "teammate"
    }
  ],
  "paginationToken": "abcdefghijklmnop",
  "totalCount": 750
}