utreon / cielo24-php
The cielo24 Web Services Platform API allows developers to easily integrate transcription, captioning and keyword extraction into their applications without having to use a manual web portal.
Installs: 1 892
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.4 || ^8.0
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.3
- guzzlehttp/psr7: ^1.7 || ^2.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.5
- phpunit/phpunit: ^8.0 || ^9.0
This package is auto-updated.
Last update: 2024-11-07 14:10:07 UTC
README
The cielo24 Web Services Platform API allows developers to easily integrate transcription, captioning and keyword extraction into their applications without having to use a manual web portal.
Installation & Usage
Requirements
PHP 7.4 and later. Should also work with PHP 8.0.
Composer
To install the bindings via Composer, run following command:
composer require utreon/cielo24-php
Manual Installation
Download the files and include autoload.php
:
<?php require_once('/path/to/cielo24/vendor/autoload.php');
Getting Started
Please follow the installation procedure and then run the following:
<?php require_once(__DIR__ . '/vendor/autoload.php'); // Configure API key authorization: ApiKeyAuth $config = Cielo24\Configuration::getDefaultConfiguration()->setApiKey('api_token', 'YOUR_API_KEY'); // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed // $config = Cielo24\Configuration::getDefaultConfiguration()->setApiKeyPrefix('api_token', 'Bearer'); $apiInstance = new Cielo24\Api\AccountApi( // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. // This is optional, `GuzzleHttp\Client` will be used as default. new GuzzleHttp\Client(), $config ); $v = 1; // int try { $result = $apiInstance->getSettings($v); print_r($result); } catch (Exception $e) { echo 'Exception when calling AccountApi->getSettings: ', $e->getMessage(), PHP_EOL; }
API Endpoints
All URIs are relative to https://api.cielo24.com/api
Models
- AddMediaResponse
- ErrorResponse
- IWPEnum
- JobInfoResponse
- JobOptions
- LoginBody
- LoginResponse
- NewJobBody
- NewJobResponse
- PerformTranscriptionBody
- PerformTranscriptionResponse
- PerformTranslationResponse
- VerifyKeyResponse
Authorization
ApiKeyAuth
- Type: API key
- API key parameter name: api_token
- Location: URL query string
Tests
To run the tests, use:
composer install vendor/bin/phpunit
Author
About this package
This PHP package is automatically generated by the OpenAPI Generator project:
- API version:
1.0.0
- Build package:
org.openapitools.codegen.languages.PhpClientCodegen