PHPackages                             andrew-svirin/zoom-php - 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. [API Development](/categories/api)
4. /
5. andrew-svirin/zoom-php

ArchivedLibrary[API Development](/categories/api)

andrew-svirin/zoom-php
======================

PHP client library for interacting with the Zoom API

14PHPCI failing

Since Apr 16Pushed 6y ago1 watchersCompare

[ Source](https://github.com/andrew-svirin/zoom-php)[ Packagist](https://packagist.org/packages/andrew-svirin/zoom-php)[ RSS](/packages/andrew-svirin-zoom-php/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Zoom-php V2
===========

[](#zoom-php-v2)

Based on Zoom API

Usage
=====

[](#usage)

```
// Configuration
$configuration = [
    'api' => [
        'url' => 'https://api.zoom.us',
        'jwt' => [
            'api_key' => '123',
            'api_secret' => 'abc',
        ],
    ],
    'email' => [
        'mailbox' => '{imap.gmail.com:993/imap/ssl}INBOX',
        'account' => [
            'email' => 'some@email', // use some+1@email email for handle domain of accounts emails.
            'password' => 'pass',
        ],
    ],
];
```

```
// Goal is to creat meeting in Zoom by new invited zoom account.
// Make domain email. That can be reached from general email via IMAP
$email = $this->emailClient->create(rand(100, 777));
$password = '12345678aA';
$firstName = 'Some';
$lastName = 'Name';

// Invite user in Zoom.
$user = $this->apiClient->call(new \AndrewSvirin\Zoom\Requests\User\CreateUser(
    $email,
    \AndrewSvirin\Zoom\Requests\User\CreateUser::TYPE_BASIC,
    [
        'first_name' => $firstName,
        'last_name' => $lastName,
        'password' => $password,
    ]
))->getJson();

// Wait for email settle down in email box.
sleep(2);
// Activate email in Zoom.
$activate = $this->emailClient->activate($user['email'], $password, $firstName, $lastName);

// Create meeting by activated Zoom account.
$meeting = $this->apiClient->call(new \AndrewSvirin\Zoom\Requests\Meeting\CreateMeeting($user['id'], [
    'topic' => 'Some Topic',
]))->getJson();
```

### Statistic

[](#statistic)

[![Build Status](https://camo.githubusercontent.com/000e98d75ad3f2a86a776403c761edea3d435545dc97ddf3cc4eca6b75ebd28a/68747470733a2f2f7472617669732d63692e6f72672f616e647265772d73766972696e2f7a6f6f6d2d7068702e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/andrew-svirin/zoom-php)

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/16819743?v=4)[Andrew Svirin](/maintainers/andrew-svirin)[@andrew-svirin](https://github.com/andrew-svirin)

### Embed Badge

![Health badge](/badges/andrew-svirin-zoom-php/health.svg)

```
[![Health](https://phpackages.com/badges/andrew-svirin-zoom-php/health.svg)](https://phpackages.com/packages/andrew-svirin-zoom-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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