nexxomnia / apiclient-php
The nexxOMNIA API Client for PHP
1.6.7
2025-03-26 15:05 UTC
Requires
- php: ^8.2 || ^8.3 || ^8.4
- ext-json: *
- guzzlehttp/guzzle: 6.*|7.*
- microsoft/azure-storage-blob: 1.*
- psr/log: ^1.0.1 || ^2.0 || ^3.0
This package is auto-updated.
Last update: 2025-03-26 15:06:56 UTC
README
The nexxOMNIA API Client provides easy Access to all API Endpoints of the nexxOMNIA API.
Getting Started
$ composer require nexxomnia/apiclient-php
use nexxomnia\apiclient; use nexxomnia\apicalls\mediacall; use nexxomnia\enums\streamtypes; $apiclient = new apiclient(); $apiclient->configure(999,"API-SECRET","SESSION-ID"); $apicall = new mediacall(streamtypes::VIDEO); $apicall->latest(); $result=$apiclient->call($apicall); echo $result->getResultIterator(TRUE)->current()->getGeneral()->getID(); // outputs the ID of the first Element
Resources
Please find all further Documentation and Usage Examples here.