didww / didww-api-3-php-sdk
PHP SDK for DIDWW API 3
Installs: 11 093
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 9
Forks: 10
Open Issues: 2
Requires
- php: >=7.4
- ext-curl: *
- ext-json: *
- ext-openssl: *
- guzzlehttp/guzzle: ^7.0
- illuminate/support: 5.5 - 10.0 || ^10.0
- phpseclib/phpseclib: ^3.0.7
- swisnl/json-api-client: ^1.3.2|^2.0
Requires (Dev)
- dms/phpunit-arraysubset-asserts: ^0.4 | ^0.5
- friendsofphp/php-cs-fixer: 3.45.0
- php-coveralls/php-coveralls: ^2.1
- php-vcr/php-vcr: ^1.4
- phpunit/phpunit: ^8.0|^9.0
- dev-master
- v6.2.1
- v6.2.0
- v6.1.0
- v6.0.0
- v5.0.0
- v4.0.0
- v3.0.1
- v3.0.0
- v2.0.0
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-DAPISDK-55-fix-description-attr-type
- dev-gigorok-patch-4
- dev-fix-request-validator
- dev-improve-encryption
- dev-Fivell-patch-1
- dev-balance_tests
- dev-order_item_improvements
- dev-simplify_repository
- dev-gigorok-patch-3
- dev-pop_fix
- dev-unit_test_improvements
- dev-gigorok-patch-2
- dev-gigorok-patch-1
This package is auto-updated.
Last update: 2024-12-29 15:35:16 UTC
README
About DIDWW API v3
The DIDWW API provides a simple yet powerful interface that allows you to fully integrate your own applications with DIDWW services. An extensive set of actions may be performed using this API, such as ordering and configuring phone numbers, setting capacity, creating SIP trunks and retrieving CDRs and other operational data.
The DIDWW API v3 is a fully compliant implementation of the JSON API specification.
Read more https://doc.didww.com/api
Installation
Execute command
composer require didww/didww-api-3-php-sdk
Usage
$credentials = new \Didww\Credentials('PLACEYOURAPIKEYHERE', 'sandbox'); \Didww\Configuration::configure($credentials); $didGroup = \Didww\Item\DidGroup::all(['include'=>'stock_keeping_units', 'filter' => ['area_name' => 'Acapulco']])->getData()[0]; var_dump($didGroup->getAttributes());
For more examples visit https://github.com/didww/didww-api-3-php-sdk/tree/master/examples
For details on obtaining your API key please visit https://doc.didww.com/api#introduction-api-keys
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/didww/didww-api-3-php-sdk
License
The package is available as open source under the terms of the MIT License.