PHPackages                             andydixon/webexinteract - 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. andydixon/webexinteract

AbandonedArchivedLibrary[API Development](/categories/api)

andydixon/webexinteract
=======================

An unofficial PHP library for WebEx Interact.

v0.1(1y ago)0103GPL-3.0-or-laterPHPPHP &gt;=7.4

Since Dec 10Pushed 1y ago1 watchersCompare

[ Source](https://github.com/andydixon/webexinteract)[ Packagist](https://packagist.org/packages/andydixon/webexinteract)[ Docs](https://www.andydixon.com/)[ RSS](/packages/andydixon-webexinteract/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

WebexInteract PHP Library
=========================

[](#webexinteract-php-library)

[![License: GPL-3.0-or-later](https://camo.githubusercontent.com/1da42cac5e225b91d17ee3c0c7f33bb8f215a907fa3d16e7658576bbc6261349/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d47504c2d2d332e302d2d6f722d2d6c617465722d626c75652e737667)](https://www.gnu.org/licenses/gpl-3.0)

An unofficial PHP library for interacting with the WebEx Interact API.
This library allows you to schedule and send SMS messages via WebEx Interact endpoints.

Features
--------

[](#features)

- Send SMS messages to one or more recipients.
- Schedule messages to be sent at a future date/time.
- Set message expiration times.

Requirements
------------

[](#requirements)

- PHP &gt;= 7.4
- Composer
- `guzzlehttp/guzzle` &gt;= 7.0
- `ext-json`

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

[](#installation)

Install the library via Composer:

```
composer require andydixon/webex-interact
```

Example
-------

[](#example)

```
require __DIR__ . '/vendor/autoload.php';

use AndyDixon\WebexInteract\Sms\InteractSms;

$interact = InteractSms::sms_api("your-api-key")
    ->setOriginator("YourBrand")
    ->addRecipient("+1234567890")
    ->message("Hello, this is a test message!");

// Optionally set scheduled time and expiry
// $interact->sendAt((new DateTime('now', new DateTimeZone('UTC')))->add(new DateInterval('PT10M')));
// $interact->expires((new DateTime('now', new DateTimeZone('UTC')))->add(new DateInterval('P1D')));

try {
    $response = $interact->sendSms();
    if ($response->hasErrors()) {
        foreach ($response->getErrors() as $errorObject) {
            echo "Error Field: " . $errorObject->getField() . "\n";
            echo "Error Message: " . $errorObject->getMessage() . "\n";
            echo "Error Code: " . $errorObject->getCode() . "\n";
        }
    } else {
        echo "Request ID: " . $response->getRequestId() . "\n";
        foreach ($response->getMessages() as $message) {
            echo "Transaction ID: " . $message->getTransactionId() . "\n";
            echo "To: " . $message->getTo() . "\n";
            echo "Status: " . $message->getStatus() . "\n";
            echo "Code: " . $message->getCode() . "\n";
        }
    }
} catch (\AndyDixon\WebexInteract\Sms\InteractError $err) {
    echo "Error: " . $err->getMessage() . "\n";
    if ($err->getData()) {
        echo "Response Data: " . $err->getData() . "\n";
    }
}
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance39

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

522d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6efc9edc7692cf97c6b88d487fbbb9d80e075fefe618ae888219233b5800af82?d=identicon)[andydixon](/maintainers/andydixon)

---

Top Contributors

[![andydixon](https://avatars.githubusercontent.com/u/7983876?v=4)](https://github.com/andydixon "andydixon (9 commits)")

### Embed Badge

![Health badge](/badges/andydixon-webexinteract/health.svg)

```
[![Health](https://phpackages.com/badges/andydixon-webexinteract/health.svg)](https://phpackages.com/packages/andydixon-webexinteract)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

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