On24 Helpers API

The Helpers API from On24 — 13 operation(s) for helpers.

Operations 13

GET /client/{clientId}/accountmanager Retrieve Account Managers #
GET /client/{clientId}/customaccounttag Custom Account Tags #
GET /client/{clientId}/event/{eventId}/regfield Retrieve Registration Fields #
GET /client/{clientId}/eventmanager Retrieve Event Managers #
GET /client/{clientId}/eventprofile Retrieve Event Profiles #
GET /client/{clientId}/eventtypes Retrieve Event Types #
GET /client/{clientId}/languages Retrieve Language Codes #
GET /client/{clientId}/salesrep Retrieve Sales Rep Contacts #
GET /client/{clientId}/signalrep Retrieve Signal Contacts #
GET /client/{clientId}/technicalrep Retrieve Technical Rep Contacts #
GET /client/{clientId}/timezones Retrieve Timezones Codes #
GET /client/{clientId}/tokens Retrieve Replacement Tokens #
GET /client/{clientId}/users Users #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/on24-helpers-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

on24-helpers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ON24 WCC API v2 Helpers API
  description: 'ON24 Webinar & Content Center REST API v2. All secured endpoints require two request headers: AccessTokenKey and AccessTokenSecret. Both headers must be supplied together — providing only one is not sufficient.'
  version: '2'
servers:
- url: https://api.on24.com/v2
  description: North America (production)
- url: https://api.eu.on24.com/v2
  description: European Union (production)
security:
- AccessTokenKey: []
- AccessTokenSecret: []
tags:
- name: Helpers
paths:
  /client/{clientId}/accountmanager:
    get:
      tags:
      - Helpers
      summary: Retrieve Account Managers
      description: Retrieves Account Manager Contacts.
      operationId: Helpers.RetrieveAccountManagers
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The account managers will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                accountmanagers:
                - accountmangerid: 162260
                  firstname: Abhijeet
                  lastname: Joshi
                  email: xxxxxxxx@gmail.com
                  primaryphone: '14324324234'
                  secondaryphone: 415-369-8000
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/customaccounttag:
    get:
      tags:
      - Helpers
      summary: Custom Account Tags
      description: Retrieves the account's custom tag information.
      operationId: Helpers.CustomAccountTags
      parameters:
      - name: clientId
        in: path
        description: The client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      responses:
        '200':
          content:
            application/json:
              example:
                customaccounttags:
                - groupid: 101
                  groupname: The group Name
                  tags:
                  - tagid: 741
                    tagname: The tag Name
                  - tagid: 742
                    tagname: The other tag Name
        '401':
          description: AccessTokenKey and AccessTokenSecret are wrong or invalid.
        '403':
          description: You do not have permission to perform the requested operation. | The client id {clientId} is inactive. | You have reached the maximum number of calls for this api.
        '404':
          description: The client {clientId} doesn't exist.
  /client/{clientId}/event/{eventId}/regfield:
    get:
      tags:
      - Helpers
      summary: Retrieve Registration Fields
      description: Retrieves registration field information for a particular event
      operationId: Helpers.RetrieveRegistrationFields
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      - name: clientId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: eventId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                registrationfields:
                - fieldid: firstname
                  fieldcaption: First Name
                  fieldtype: textbox
                  validationtype: none
                  required: Y
                - fieldid: lastname
                  fieldcaption: Last Name
                  fieldtype: textbox
                  validationtype: none
                  required: Y
                - fieldid: email
                  fieldcaption: Email
                  fieldtype: textbox
                  validationtype: email
                  required: Y
                - fieldid: company
                  fieldcaption: Company
                  fieldtype: textbox
                  validationtype: none
                  required: Y
                - fieldid: job_title
                  fieldcaption: Title
                  fieldtype: listbox
                  validationtype: none
                  required: Y
                  options:
                  - Manager
                  - Senior Manager
                  - Director
                  - Senior Director
                  - CMO
                  - CFO
                  - CEO
                  - CTO
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
        '404':
          description: The event id is not found under this client account
  /client/{clientId}/eventmanager:
    get:
      tags:
      - Helpers
      summary: Retrieve Event Managers
      description: Retrieves Event Manager Contacts.
      operationId: Helpers.RetrieveEventManagers
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The event managers will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                eventmanagers:
                - adminid: '162295'
                  firstname: Amber
                  lastname: Mahajan
                  email: xxxxxxxx@inbfw.com
                  primaryphone: '9713124248'
                  secondaryphone: 415-369-8000
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/eventprofile:
    get:
      tags:
      - Helpers
      summary: Retrieve Event Profiles
      description: Retrieves event profiles.
      operationId: Helpers.RetrieveEventProfiles
      parameters:
      - name: clientId
        in: path
        description: The event profiles will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accessTokenKey
        in: header
        description: Security Parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security Parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b216001b45391717d9fbeb780438
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          content:
            application/json:
              example:
                eventprofiles:
                - eventprofileid: '918'
                  eventprofilename: Stonehenge Profile (918)
                - eventprofileid: '1200'
                  eventprofilename: Stonehenge Profile (1200)
                - eventprofileid: '1215'
                  eventprofilename: Stonehenge Profile (1215)
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/eventtypes:
    get:
      tags:
      - Helpers
      summary: Retrieve Event Types
      description: Retrieves event types for the given client account.
      operationId: Helpers.RetrieveEventTypes
      parameters:
      - name: accessTokenKey
        in: header
        description: client access token key
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: client access token secret
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The event types will be retrieved based on the client id
        required: true
        schema:
          type: string
        example: 18091
      - name: accept
        in: header
        description: 'Output format. possible values: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                eventtypes:
                - label: Live Video and Audio
                  value: fav
                - label: Simu-live
                  value: simulive
                - label: Sim-2-live
                  value: sim2live
                - label: Broadcast Video
                  value: encodeonsite
                - label: On Demand
                  value: ondemand
                - label: forum
                  value: forum
                - label: Engagement Hub
                  value: Engagement Hub
                - label: experience
                  value: experience
                - label: Go Live
                  value: Go Live
                - label: Go Live Session
                  value: Go Live Session
                - label: Go Live Content
                  value: Go Live Content
                - label: Go Live Location
                  value: Go Live Location
                - label: Recurring Simulive
                  value: Recurring Simulive
                - label: article
                  value: article
                - label: image
                  value: image
                - label: pdf
                  value: pdf
                - label: podcast
                  value: podcast
                - label: video
                  value: video
                - label: webpage
                  value: webpage
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/languages:
    get:
      tags:
      - Helpers
      summary: Retrieve Language Codes
      description: Retrieves language codes.
      operationId: Helpers.RetrieveLanguageCodes
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The language codes will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                languagecodes:
                - label: English (UK)
                  countrycd: UK
                  languagecd: en
                - label: Portuguese
                  languagecd: pt
                - label: Chinese (Simplified)
                  countrycd: CN
                  languagecd: zh
                - label: Chinese (Traditional)
                  countrycd: TW
                  languagecd: zh
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/salesrep:
    get:
      tags:
      - Helpers
      summary: Retrieve Sales Rep Contacts
      description: Retrieves Sales Representatives.
      operationId: Helpers.RetrieveSalesRepContacts
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The sales contacts will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                salesreps:
                - salesrepid: '162260'
                  firstname: Abhijeet
                  lastname: Joshi
                  email: xxxxxxxx@gmail.com
                  primaryphone: '14324324234'
                  secondaryphone: 415-369-8000
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/signalrep:
    get:
      tags:
      - Helpers
      summary: Retrieve Signal Contacts
      description: Retrieves Signal Contacts
      operationId: Helpers.RetrieveSignalContacts
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The signal contacts will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                signalreps:
                - signalrepid: '162260'
                  firstname: Abhijeet
                  lastname: Joshi
                  email: xxxxxxxxx@gmail.com
                  primaryphone: '14324324234'
                  secondaryphone: 415-369-8000
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/technicalrep:
    get:
      tags:
      - Helpers
      summary: Retrieve Technical Rep Contacts
      description: Retrieves Technical Representatives.
      operationId: Helpers.RetrieveTechnicalRepContacts
      parameters:
      - name: accessTokenKey
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: Security parameter
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The technical contacts will be retrieved based on the client id
        required: true
        schema:
          type: number
        example: 18901
      - name: accept
        in: header
        description: 'Output format: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                technicalcontacts:
                - contactid: 162260
                  contactname: Abhijeet Joshi
                - contactid: 133227
                  contactname: Allyson Frazier
                - contactid: 145364
                  contactname: Aya Ahmed
        '401':
          description: The access token secret or access token key was not found
        '403':
          description: The client id is not an Elite user/The adminId can not perform operations under client clientId; or You reached the maximum number of calls for this endpoint
  /client/{clientId}/timezones:
    get:
      tags:
      - Helpers
      summary: Retrieve Timezones Codes
      description: Retrieves time zones for the given client account
      operationId: Helpers.RetrieveTimezonesCodes
      parameters:
      - name: accessTokenKey
        in: header
        description: client access token key
        required: true
        schema:
          type: string
        example: 63129107067A520E6B7DE18D5E1CB2BF
      - name: accessTokenSecret
        in: header
        description: client access token secret
        required: true
        schema:
          type: string
        example: 072639740ac239333e3708a1623b9de3590d972e6b1060071b726ecfd9b21600
      - name: clientId
        in: path
        description: The time zones will be retrieved based on the client id
        required: true
        schema:
          type: string
        example: 18091
      - name: accept
        in: header
        description: 'Output format. possible values: Application/xml or Application/json'
        schema:
          type: string
          default: application/json
        example: application/json
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                timezones:
                - label: (GMT -12:00) Etc/GMT+12
                  value: Etc/GMT+12
                - label: (GMT -11:00) Etc/GMT+11
                  value: Etc/GMT+11
                - label: (GMT -11:00) Pacific/Midway
                  value: Pacific/Midway
                - label: (GMT -11:00) Pacific/Niue
                  value: Pacific/Niue
                - label: (GMT -11:00) Pacific/Pago_Pago
                  value: Pacific/Pago_Pago
                - label: (GMT -11:00) Pacific/Samoa
                  value: Pacific/Samoa
                - label: (GMT -11:00) US/Samoa
                  value: US/Samoa
                - label: (GMT -10:00) America/Adak
                  value: America/Adak
                - label: (GMT -10:00) America/Atka
                  value: America/Atka
                - label: (GMT -10:00) Etc/GMT+10
                  value: Etc/GMT+10
                - label: (GMT -10:00) Pacific/Honolulu
                  value: Pacific/Honolulu
                - label: (GMT -10:00) Pacific/Johnston
                  value: Pacific/Johnston
                - label: (GMT -10:00) Pacific/Rarotonga
                  value: Pacific/Rarotonga
                - label: (GMT -10:00) Pacific/Tahiti
                  value: Pacific/Tahiti
                - label: (GMT -10:00) SystemV/HST10
                  value: SystemV/HST10
                - label: (GMT -10:00) US/Aleutian
                  value: US/Aleutian
                - label: (GMT -10:00) US/Hawaii
                  value: US/Hawaii
                - label: (GMT -9:30) Pacific/Marquesas
                  value: Pacific/Marquesas
                - label: (GMT -9:00) America/Anchorage
                  value: America/Anchorage
                - label: (GMT -9:00) America/Juneau
                  value: America/Juneau
                - label: (GMT -9:00) America/Metlakatla
                  value: America/Metlakatla
                - label: (GMT -9:00) America/Nome
                  value: America/Nome
                - label: (GMT -9:00) America/Sitka
                  value: America/Sitka
                - label: (GMT -9:00) America/Yakutat
                  value: America/Yakutat
                - label: (GMT -9:00) Etc/GMT+9
                  value: Etc/GMT+9
                - label: (GMT -9:00) Pacific/Gambier
                  value: Pacific/Gambier
                - label: (GMT -9:00) SystemV/YST9
                  value: SystemV/YST9
                - label: (GMT -9:00) SystemV/YST9YDT
                  value: SystemV/YST9YDT
                - label: (GMT -9:00) US/Alaska
                  value: US/Alaska
                - label: (GMT -8:00) America/Dawson
                  value: America/Dawson
                - label: (GMT -8:00) America/Ensenada
                  value: America/Ensenada
                - label: (GMT -8:00) America/Los_Angeles
                  value: America/Los_Angeles
                - label: (GMT -8:00) America/Santa_Isabel
                  value: America/Santa_Isabel
                - label: (GMT -8:00) America/Tijuana
                  value: America/Tijuana
                - label: (GMT -8:00) America/Vancouver
                  value: America/Vancouver
                - label: (GMT -8:00) America/Whitehorse
                  value: America/Whitehorse
                - label: (GMT -8:00) Canada/Pacific
                  value: Canada/Pacific
                - label: (GMT -8:00) Canada/Yukon
                  value: Canada/Yukon
                - label: (GMT -8:00) Etc/GMT+8
                  value: Etc/GMT+8
                - label: (GMT -8:00) Mexico/BajaNorte
                  value: Mexico/BajaNorte
                - label: (GMT -8:00) PST8PDT
                  value: PST8PDT
                - label: (GMT -8:00) Pacific/Pitcairn
                  value: Pacific/Pitcairn
                - label: (GMT -8:00) SystemV/PST8
                  value: SystemV/PST8
                - label: (GMT -8:00) SystemV/PST8PDT
                  value: SystemV/PST8PDT
                - label: (GMT -8:00) US/Pacific
                  value: US/Pacific
                - label: (GMT -7:00) America/Boise
                  value: America/Boise
                - label: (GMT -7:00) America/Cambridge_Bay
                  value: America/Cambridge_Bay
                - label: (GMT -7:00) America/Chihuahua
                  value: America/Chihuahua
                - label: (GMT -7:00) America/Creston
                  value: America/Creston
                - label: (GMT -7:00) America/Dawson_Creek
                  value: America/Dawson_Creek
                - label: (GMT -7:00) America/Denver
                  value: America/Denver
                - label: (GMT -7:00) America/Edmonton
                  value: America/Edmonton
                - label: (GMT -7:00) America/Fort_Nelson
                  value: America/Fort_Nelson
                - label: (GMT -7:00) America/Hermosillo
                  value: America/Hermosillo
                - label: (GMT -7:00) America/Inuvik
                  value: America/Inuvik
                - label: (GMT -7:00) America/Mazatlan
                  value: America/Mazatlan
                - label: (GMT -7:00) America/Ojinaga
                  value: America/Ojinaga
                - label: (GMT -7:00) America/Phoenix
                  value: America/Phoenix
                - label: (GMT -7:00) America/Shiprock
                  value: America/Shiprock
                - label: (GMT -7:00) America/Yellowknife
                  value: America/Yellowknife
                - label: (GMT -7:00) Canada/Mountain
                  value: Canada/Mountain
                - label: (GMT -7:00) Etc/GMT+7
                  value: Etc/GMT+7
                - label: (GMT -7:00) MST7MDT
                  value: MST7MDT
                - label: (GMT -7:00) Mexico/BajaSur
                  value: Mexico/BajaSur
                - label: (GMT -7:00) Navajo
                  value: Navajo
                - label: (GMT -7:00) SystemV/MST7
                  value: SystemV/MST7
                - label: (GMT -7:00) SystemV/MST7MDT
                  value: SystemV/MST7MDT
                - label: (GMT -7:00) US/Arizona
                  value: US/Arizona
                - label: (GMT -7:00) US/Mountain
                  value: US/Mountain
                - label: (GMT -6:00) America/Bahia_Banderas
                  value: America/Bahia_Banderas
                - label: (GMT -6:00) America/Belize
                  value: America/Belize
                - label: (GMT -6:00) America/Chicago
                  value: America/Chicago
                - label: (GMT -6:00) America/Costa_Rica
                  value: America/Costa_Rica
                - label: (GMT -6:00) America/El_Salvador
                  value: America/El_Salvador
                - label: (GMT -6:00) America/Guatemala
                  value: America/Guatemala
                - label: (GMT -6:00) America/Indiana/Knox
                  value: America/Indiana/Knox
                - label: (GMT -6:00) America/Indiana/Tell_City
                  value: America/Indiana/Tell_City
                - label: (GMT -6:00) America/Knox_IN
                  value: America/Knox_IN
                - label: (GMT -6:00) America/Managua
                  value: America/Managua
                - label: (GMT -6:00) America/Matamoros
                  value: America/Matamoros
                - label: (GMT -6:00) America/Menominee
                  value: America/Menominee
                - label: (GMT -6:00) America/Merida
                  value: America/Merida
                - label: (GMT -6:00) America/Mexico_City
                  value: America/Mexico_City
                - label: (GMT -6:00) America/Monterrey
                  value: America/Monterrey
                - label: (GMT -6:00) America/North_Dakota/Beulah
                  value: America/North_Dakota/Beulah
                - label: (GMT -6:00) America/North_Dakota/Center
                  value: America/North_Dakota/Center
                - label: (GMT -6:00) America/North_Dakota/New_Salem
                  value: America/North_Dakota/New_Salem
                - label: (GMT -6:00) America/Rainy_River
                  value: America/Rainy_River
                - label: (GMT -6:00) America/Rankin_Inlet
                  value: America/Rankin_Inlet
                - label: (GMT -6:00) America/Regina
                  value: America/Regina
                - label: (GMT -6:00) America/Resolute
                  value: America/Resolute
                - label: (GMT -6:00) America/Swift_Current
                  value: America/Swift_Current
                - label: (GMT -6:00) America/Tegucigalpa
                  value: America/Tegucigalpa
                - label: (GMT -6:00) America/Winnipeg
                  value: America/Winnipeg
                - label: (GMT -6:00) CST6CDT
                  value: CST6CDT
                - label: (GMT -6:00) Canada/Central
                  value: Canada/Central
                - label: (GMT -6:00) Canada/East-Saskatchewan
                  value: Canada/East-Saskatchewan
                - label: (GMT -6:00) Canada/Saskatchewan
                  value: Canada/Saskatchewan
                - label: (GMT -6:00) Chile/EasterIsland
                  value: Chile/EasterIsland
                - label: (GMT -6:00) Etc/GMT+6
                  value: Etc/GMT+6
                - label: (GMT -6:00) Mexico/General
                  value: Mexico/General
                - label: (GMT -6:00) Pacific/Easter
                  value: Pacific/Easter
                - label: (GMT -6:00) Pacific/Galapagos
                  value: Pacific/Galapagos
                - label: (GMT -6:00) SystemV/CST6
                  value: SystemV/CST6
                - label: (GMT -6:00) SystemV/CST6CDT
                  value: SystemV/CST6CDT
                - label: (GMT -6:00) US/Central
                  value: US/Central
                - label: (GMT -6:00) US/Indiana-Starke
                  value: US/Indiana-Starke
                - label: (GMT -5:00) America/Atikokan
                  value: America/Atikokan
                - label: (GMT -5:00) America/Bogota
                  value: America/Bogota
                - label: (GMT -5:00) America/Cancun
                  value: America/Cancun
                - label: (GMT -5:00) America/Cayman
                  value: America/Cayman
                - label: (GMT -5:00) America/Coral_Harbour
                  value: America/Coral_Harbour
                - label: (GMT -5:00) America/Detroit
                  value: America/Detroit
                - label: (GMT -5:00

# --- truncated at 32 KB (80 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/on24/refs/heads/main/openapi/on24-helpers-api-openapi.yml