/var/www/hkosl.com/demo_google/application/vendor/sendgrid/sendgrid/examples/stats/stats.php


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 global email statistics #
// GET /stats #

$query_params json_decode('{"aggregated_by": "day", "limit": 1, "start_date": "2016-01-01", "end_date": "2016-04-01", "offset": 1}');
$response $sg->client->stats()->get(null$query_params);
echo 
$response->statusCode();
echo 
$response->body();
print_r($response->headers());