PHPackages                             punktde/flow-zoom-api - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. punktde/flow-zoom-api

ActiveNeos-package

punktde/flow-zoom-api
=====================

Zoom API connector

1.1.0(5y ago)212.4k1MITPHP

Since Sep 10Pushed 5y ago5 watchersCompare

[ Source](https://github.com/punktDe/flow-zoom-api)[ Packagist](https://packagist.org/packages/punktde/flow-zoom-api)[ RSS](/packages/punktde-flow-zoom-api/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (5)Versions (4)Used By (0)

PunktDe.Zoom.Api
================

[](#punktdezoomapi)

[![Latest Stable Version](https://camo.githubusercontent.com/5b529f4cfcd424968a8dcfd83c96d9d7494a062af63d6d7c74186b319a6c69a0/68747470733a2f2f706f7365722e707567782e6f72672f70756e6b7444652f666c6f772d7a6f6f6d2d6170692f762f737461626c65)](https://packagist.org/packages/punktDe/flow-zoom-api) [![Build Status](https://camo.githubusercontent.com/c1871c645ddea5b82732ae3362a365cdfabf60f187d19dec08b2a9626e8ffe9e/68747470733a2f2f7472617669732d63692e6f72672f70756e6b7444652f666c6f772d7a6f6f6d2d6170692e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/punktDe/flow-zoom-api) [![Total Downloads](https://camo.githubusercontent.com/dd4fd3e509abdaeb54f309fb96e7666c6fd7caf2fc0628bcbae46749f77fd97d/68747470733a2f2f706f7365722e707567782e6f72672f70756e6b7444652f666c6f772d7a6f6f6d2d6170692f646f776e6c6f616473)](https://packagist.org/packages/punktDe/flow-zoom-api) [![License](https://camo.githubusercontent.com/ebadaadc81df3796a96d922dd5202c94156455850758e56847510e5af3e9e51b/68747470733a2f2f706f7365722e707567782e6f72672f70756e6b7444652f666c6f772d7a6f6f6d2d6170692f6c6963656e7365)](https://packagist.org/packages/punktDe/flow-zoom-api)

This [Flow](https://flow.neos.io) package provides a programmable interface to the [Zoom API](https://marketplace.zoom.us/docs/api-reference/zoom-api/).

Implemented Endpoints
---------------------

[](#implemented-endpoints)

The following Endpoints are currently implemented, see the [Admin API documentation](https://marketplace.zoom.us/docs/api-reference/zoom-api/) for details:

- Meeting
- Webinar
- Registrant

Setup
=====

[](#setup)

Installation
------------

[](#installation)

The installation is done with composer:

```
composer require punktde/flow-zoom-api
```

Configuration
-------------

[](#configuration)

- Create a set of JWT API-credentials
    - Log-in to your Zoom-Account and [create a new App](https://marketplace.zoom.us/develop/create)
- Configure the required settings:
    - clientId
    - clientSecret
    - baseUri
    - zoomAccountIdentifier (your account's email-address)

Usage Examples
==============

[](#usage-examples)

#### Find a single meeting by its identifier and host (user)

[](#find-a-single-meeting-by-its-identifier-and-host-user)

You need to provide an identifier for the host (user) of the meeting, since the api endpoint has no way of listing all meetings in an account

```
/**
* @Flow\Inject
* @var PunktDe\Zoom\Api\Resource\MeetingResource
*/
  protected $meetings;

   /**
    * @param string $identifier
    * @param string $userIdentifier
    * @return PunktDe\Zoom\Api\Dto\Meeting
    */
    private function findOneMeetingByIdentifier(string $identifier, string $userIdentifier): PunktDe\Zoom\Api\Dto\Product {
     return $this->meetings->get($identifier, $userIdentifier);
    }
```

#### Add a registrant to an existing meeting

[](#add-a-registrant-to-an-existing-meeting)

```
/**
* @Flow\Inject
* @var PunktDe\Zoom\Api\Resource\MeetingRegistrantResource
*/
  protected $meetingRegistrants;

  /**
   * @return Registrant|null
   */
  private function addRegistrantToExistingMeeting(string $meetingIdentifier): ?PunktDe\Zoom\Api\Dto\Registrant
  {
      $registrant = (new Registrant())
          ->setEmail('info@acme.co')
          ->setFirstName('Pooh')
          ->setLastName('The Bear');
      return $this->meetingRegistrants->add($registrant, $meetingIdentifier);
   }
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 77.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

2067d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0fad3b9ab04057e586b701aca7a8dbbf9598718114cdfd6bf85dada030f7688e?d=identicon)[punktde](/maintainers/punktde)

---

Top Contributors

[![daniellienert](https://avatars.githubusercontent.com/u/642226?v=4)](https://github.com/daniellienert "daniellienert (14 commits)")[![c4ll-m3-j4ck](https://avatars.githubusercontent.com/u/7119811?v=4)](https://github.com/c4ll-m3-j4ck "c4ll-m3-j4ck (4 commits)")

---

Tags

neoscmszoom

### Embed Badge

![Health badge](/badges/punktde-flow-zoom-api/health.svg)

```
[![Health](https://phpackages.com/badges/punktde-flow-zoom-api/health.svg)](https://phpackages.com/packages/punktde-flow-zoom-api)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[craftcms/cms

Craft CMS

3.6k3.6M2.6k](/packages/craftcms-cms)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[api-platform/symfony

Symfony API Platform integration

323.2M67](/packages/api-platform-symfony)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
