Zoom · Arazzo Workflow

Zoom Past Meeting Attendance Report

Version 1.0.0

Read a past meeting's summary and then list everyone who attended.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ChatCollaborationCommunicationsMeetingsVideo ConferencingVideosWebinarsArazzoWorkflows

Provider

zoom

Workflows

past-meeting-attendance
Get a past meeting's details and list its participants.
Calls getPastMeetingDetails for a meeting instance UUID, then listPastMeetingParticipants to enumerate the attendees of that instance.
2 steps inputs: accessToken, meetingUuid outputs: participants, participantsCount
1
getPastDetails
Retrieve the summary information for the completed meeting instance.
2
listParticipants
List the participants who attended the completed meeting instance.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zoom Past Meeting Attendance Report
  summary: Read a past meeting's summary and then list everyone who attended.
  description: >-
    Retrieves the summary of a completed meeting by its instance UUID and then
    lists the participants who attended that instance. The summary step confirms
    the meeting ran and captures its UUID and participant count, and the
    participants step reads the per-attendee join and leave times. Every request is
    spelled out inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: meetingParticipantsApi
  url: ../openapi/zoom-meeting-participants-api-openapi.yml
  type: openapi
- name: meetingsApi
  url: ../openapi/zoom-meetings-api-openapi.yml
  type: openapi
workflows:
- workflowId: past-meeting-attendance
  summary: Get a past meeting's details and list its participants.
  description: >-
    Calls getPastMeetingDetails for a meeting instance UUID, then
    listPastMeetingParticipants to enumerate the attendees of that instance.
  inputs:
    type: object
    required:
    - accessToken
    - meetingUuid
    properties:
      accessToken:
        type: string
        description: OAuth bearer access token for the Zoom REST API.
      meetingUuid:
        type: string
        description: >-
          The past meeting instance UUID. Double-encode it if it begins with a
          slash or contains a double slash.
  steps:
  - stepId: getPastDetails
    description: Retrieve the summary information for the completed meeting instance.
    operationId: getPastMeetingDetails
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: meetingId
      in: path
      value: $inputs.meetingUuid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      uuid: $response.body#/uuid
      participantsCount: $response.body#/participants_count
      totalMinutes: $response.body#/total_minutes
  - stepId: listParticipants
    description: List the participants who attended the completed meeting instance.
    operationId: listPastMeetingParticipants
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: meetingId
      in: path
      value: $inputs.meetingUuid
    - name: page_size
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      participants: $response.body#/participants
      totalRecords: $response.body#/total_records
  outputs:
    participantsCount: $steps.getPastDetails.outputs.participantsCount
    participants: $steps.listParticipants.outputs.participants

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/zoom-past-meeting-report-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.