Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
composer require getruba/sdk
declare(strict_types=1); require 'vendor/autoload.php'; use Ruba; $sdk = Ruba\Ruba::builder() ->setSecurity('<YOUR_BEARER_TOKEN_HERE>') ->build(); $responses = $sdk->organizations->list( page: 1, limit: 10 ); foreach ($responses as $response) { if ($response->statusCode === 200) { // handle response } }
$sdk = Ruba\Ruba::builder() ->setServer('sandbox') ->setSecurity('<YOUR_BEARER_TOKEN_HERE>') ->build();