Get Workspace Info

URL

https://us-central1-ohyay-prod-d7acf.cloudfunctions.net/ohyayapi/get-workspace-info

Request Format

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

Response Format

interface GetWorkspaceInfoResponse {
  region: string;
  capacityLimit: number;
  vanityUrl?: string;
  tags?: string[];
}