List Workspaces

URL

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

Request Format

interface ListRequest {
  userId: string;
}

Response Format

interface WorkspaceListing {
  id: string;
  title: string;
  editors: { email: string }[];
}

interface ListResponse {
  spaces: WorkspaceListing[];
}