Zoom · Arazzo Workflow

Zoom Archived Chat History Drill-Down

Version 1.0.0

List archived chat sessions, then read the messages of the first session, branching when none exist.

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

Provider

zoom

Workflows

chat-history-drill-down
List archived chat sessions and read the first session's messages.
Calls chatList for a date range and, only when sessions exist, calls chatGet for the first session id to read its messages.
2 steps inputs: accessToken, from, to outputs: chatMessages, firstSessionId
1
listSessions
chatList
List the archived chat sessions for the date range and capture the first session id.
2
getMessages
chatGet
Read the chat messages for the first session over the same date range.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zoom Archived Chat History Drill-Down
  summary: List archived chat sessions, then read the messages of the first session, branching when none exist.
  description: >-
    Lists the archived chat sessions for a date range and branches on the result:
    when at least one session is returned it reads the messages of the first
    session, and when no sessions exist it ends without further calls. The list step
    captures the first session id used by the messages step. This archive API
    authenticates with an archived-messages access_token form field, 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: chatApi
  url: ../openapi/zoom-chat--openapi-original.yml
  type: openapi
workflows:
- workflowId: chat-history-drill-down
  summary: List archived chat sessions and read the first session's messages.
  description: >-
    Calls chatList for a date range and, only when sessions exist, calls chatGet
    for the first session id to read its messages.
  inputs:
    type: object
    required:
    - accessToken
    - from
    - to
    properties:
      accessToken:
        type: string
        description: Archived chat messages access token.
      from:
        type: string
        description: Start date, e.g. 2026-05-01.
      to:
        type: string
        description: End date, e.g. 2026-05-07.
  steps:
  - stepId: listSessions
    description: >-
      List the archived chat sessions for the date range and capture the first
      session id.
    operationId: chatList
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        access_token: $inputs.accessToken
        from: $inputs.from
        to: $inputs.to
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstSessionId: $response.body#/chat_list/0/session_id
    onSuccess:
    - name: hasSessions
      type: goto
      stepId: getMessages
      criteria:
      - context: $response.body
        condition: $.chat_list.length > 0
        type: jsonpath
    - name: noSessions
      type: end
      criteria:
      - context: $response.body
        condition: $.chat_list.length == 0
        type: jsonpath
  - stepId: getMessages
    description: Read the chat messages for the first session over the same date range.
    operationId: chatGet
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        access_token: $inputs.accessToken
        session_id: $steps.listSessions.outputs.firstSessionId
        from: $inputs.from
        to: $inputs.to
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groupName: $response.body#/group_name
      chatMessages: $response.body#/chat_messages
  outputs:
    firstSessionId: $steps.listSessions.outputs.firstSessionId
    chatMessages: $steps.getMessages.outputs.chatMessages

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-chat-history-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 email required.

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