Get recipient detail

GET /statistics/recipient/{recipientEmail}

Parameters:

Name Description Type Mandatory
recipientEmail Recipient email String Yes

Response:

Name Description Type
requested Number of emails sent to this recipient Int
delivered Number of emails delivered to this recipient Int
open Number of emails opened by this recipient Int
click Number of emails clicked by this recipient Int
unsubscribed Number of clicks on the unsubscribe link Int
opener Number of unique open Int
clicker Number of unique click Int
Programming language:

Response exemple:

1
2
3
4
5
6
7
8
9
10
{
  "requested": 98,
  "delivered": 94,
  "open": 52,
  "click": 12,
  "unsubscribed": 0,
  "opener": 47,
  "clicker": 11
}