Skip to content

onlyasmalllizard/fakeZoomApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fakeZoomApi

This is an API written to mimic the type of data returned from the Past Meeting Participants route of the Zoom API.

Routes

Request Path Response
GET /participants All participants in the database
GET /participants/:id A single instance from the database
GET /participants/person/:id All instances of a specific person joining

Shape of response

{
  page_count: number;
  page_size: number;
  total_records: number;
  next_page_token: string;
  participants: [
    {
      db_id: number;
      id: string;
      name: string;
      user_email: string;
    },
  ]
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published