PHP code example of afosto / io-sdk
1. Go to this page and download the library: Download afosto/io-sdk library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
afosto / io-sdk example snippets
$scopes = ['iam:users:create'];
$client = new \Afosto\Sdk\Sdk("1234","123456",$scopes);
$user = $client->getAuthorizedClient()->createUser(
(new \Afosto\Sdk\Model\IamUserModel)
->setEmail("[email protected]")
->setFirstName("info")
->setLastName("afosto")
);
//prints the created user id
print_r($user->getId());