Skip to content

Past Meeting Attendees does not handle pagination #166

@matthewbarr

Description

@matthewbarr

"/past_meetings/{}/participants".format(kwargs.get("meeting_id")),

From https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/pastmeetingparticipants:
This request can exceed a single page, and may need to handle the pagination.

{
  "type": "object",
  "description": "Pagination object.",
  "properties": {
    "page_count": {
      "type": "integer",
      "description": "The number of pages returned for the request made."
    },
    "page_size": {
      "type": "integer",
      "description": "The number of records returned within a single API call.",
      "default": 30,
      "maximum": 300
    },
    "total_records": {
      "type": "integer",
      "description": "The number of all records available across pages."
    },
    "next_page_token": {
      "description": "The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.",
      "type": "string"
    },
    "participants": {
    ....
    }
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions