summaryrefslogtreecommitdiffstats
path: root/examples/scopes/scopes.php
blob: ff2c066b58b722cd4dacf2b249bb9d50b7858f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
// If you are using Composer
require '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();