Blame | Last modification | View Log | RSS feed
<?php// If you are using Composerrequire 'vendor/autoload.php';$apiKey = getenv('SENDGRID_API_KEY');$sg = new \SendGrid($apiKey);////////////////////////////////////////////////////// Retrieve a list of scopes for which this user has access. #// GET /scopes #$response = $sg->client->scopes()->get();echo $response->statusCode();echo $response->body();echo $response->headers();