List Users

URL

https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/list-users

Request Format

interface ListUsersRequest {
  userId: string;
  wsid: string;
}

Response Format

interface ListUsersResponse {
  users: {
    email: string;
    tags: string[];
    uid?: string; // only present if they've visited the space
  }[];
}