Envois: Récupère le nombre total d'envoi
Post /statistics/sends
Paramètres :
Nom | Description | Type | Obligatoire |
---|---|---|---|
dateBegin | Date de début au format YYYY-MM-ddThh:mm:ss | Int | Non |
dateEnd | Date de fin au format YYYY-MM-ddThh:mm:ss | Int | Non |
froms | Email(s) de l'expéditeur | Array | Non |
apiKeys | Tableau de clés Api | Array | Non |
tags | Tableau de tags | Array | Non |
Nom | Description | Type |
---|---|---|
error | Nombre d'emails en erreur | Int |
rejected | Nombre d'emails rejetés | Int |
requested | Nombre d'emails traités | Int |
deferred | Nombre d'emails différé | Int |
scheduled | Nombre d'emails programmés | Int |
filtered | Nombre d'emails filtrés | Int |
delivered | Nombre d'emails délivrés | Int |
hardbounced | Nombre d'emails en hardbounce | Int |
softbounced | Nombre d'emails en softbounce | Int |
open | Nombre d'emails ouverts | Int |
click | Nombre d'emails cliqués | Int |
read | Nombre d'emails lus | Int |
unsubscribed | Nombre de désinscrits | Int |
complaint | Nombre de plaintes | Int |
opener | Nombre d'ouvreurs | Int |
clicker | Nombre de cliqueurs | Int |
Langage de programmation :
Exemple de requête :
{ "dateBegin":1454545657, "dateEnd":1564564564, "tags":["test","test2"] }
Exemple de réponse :
{ "accountId": "899zz99999999z999999z999", "error": 0, "rejected": 0, "requested": 1000, "deferred": 0, "scheduled": 0, "filtered": 0, "delivered": 1000, "hardbounced": 0, "softbounced": 0, "open": 500, "click": 500, "read": 0, "unsubscribed": 0, "complaint": 0, "opener": 0, "clicker": 0 }
Exemple de code :
curl -X POST -d '{"dateBegin":"1443046641","dateEnd":"1443219441"}' -H "Content-Type: application/json" -H "X-Tipimail-ApiUser:YOUR_SMTP_USERNAME" -H "X-Tipimail-ApiKey:YOUR_SMTP_KEY" https://api.tipimail.com/v1/statistics/sends
require 'vendor/autoload.php'; $tipimail = new Tipimail\Tipimail('YOUR_SMTP_USERNAME', 'YOUR_API_KEY'); try { $dateBegin = null; $dateEnd = null; $froms = null; $apiKeys = null; $tags = null; $result = $tipimail->getStatisticsService()->getSends($dateBegin, $dateEnd, $froms, $tags, $apiKeys); var_dump($result); } catch(Tipimail\Exceptions\TipimailException $e) { echo 'Exception received :', $e->getMessage(), "\n"; }
... public class Example { public static void main(String[] args) { Tipimail tipimail = new Tipimail("YOUR_SMTP_USERNAME", "YOUR_API_KEY"); try { nteger dateBegin = null; Integer dateEnd = null; ArrayList<String> froms = null; ArrayList<String> tags = null; ArrayList<String> apiKeys = null; StatisticsSends sends; sends = tipimail.getStatisticsService().getSends(dateBegin, dateEnd, froms, tags, apiKeys); } catch (TipimailException e) { } } }