Zoom · Arazzo Workflow

Zoom Account Report Then User Drill-Down

Version 1.0.0

Pull an account usage report, then drill into the first user's meeting report.

1 workflow 1 source API 1 provider
View Spec View on GitHub ChatCollaborationCommunicationsMeetingsVideo ConferencingVideosWebinarsArazzoWorkflows

Provider

zoom

Workflows

account-then-user-report
Get the account report and drill into the first user's meeting report.
Calls reportGetaccountreport for the date range, then reportGetuserreport for the first user listed in the account report.
2 steps inputs: apiKey, apiSecret, from, to outputs: totalMeetings, userMeetings
1
accountReport
Pull the account usage report for the date range and capture the first user listed.
2
userReport
Pull the detailed per-meeting report for the first user from the account report over the same date range.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zoom Account Report Then User Drill-Down
  summary: Pull an account usage report, then drill into the first user's meeting report.
  description: >-
    Pulls the account-level usage report for a date range and then drills into the
    first user listed in that report to pull their detailed per-meeting report for
    the same range. The account step captures the first user's id, which the user
    step uses as the report subject. This legacy Zoom API authenticates with
    api_key and api_secret form fields rather than a bearer token, so credentials
    are supplied inline in each request body. 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: reportApi
  url: ../openapi/zoom-report-api-openapi.yml
  type: openapi
workflows:
- workflowId: account-then-user-report
  summary: Get the account report and drill into the first user's meeting report.
  description: >-
    Calls reportGetaccountreport for the date range, then reportGetuserreport for
    the first user listed in the account report.
  inputs:
    type: object
    required:
    - apiKey
    - apiSecret
    - from
    - to
    properties:
      apiKey:
        type: string
        description: Zoom API key used to authenticate the legacy API.
      apiSecret:
        type: string
        description: Zoom API secret used to authenticate the legacy API.
      from:
        type: string
        description: Report start date, e.g. 2026-05-01.
      to:
        type: string
        description: Report end date, e.g. 2026-05-31.
  steps:
  - stepId: accountReport
    description: >-
      Pull the account usage report for the date range and capture the first
      user listed.
    operationId: reportGetaccountreport
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        api_key: $inputs.apiKey
        api_secret: $inputs.apiSecret
        from: $inputs.from
        to: $inputs.to
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      totalMeetings: $response.body#/total_meetings
      firstUserId: $response.body#/users/0/user_id
  - stepId: userReport
    description: >-
      Pull the detailed per-meeting report for the first user from the account
      report over the same date range.
    operationId: reportGetuserreport
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        api_key: $inputs.apiKey
        api_secret: $inputs.apiSecret
        user_id: $steps.accountReport.outputs.firstUserId
        from: $inputs.from
        to: $inputs.to
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      totalRecords: $response.body#/total_records
      meetings: $response.body#/meetings
  outputs:
    totalMeetings: $steps.accountReport.outputs.totalMeetings
    userMeetings: $steps.userReport.outputs.meetings

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-account-then-user-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.