User Replies
This report provides the number of replies a user sent for each period in a specified time range. You may optionally specify two time ranges to see how the number of replies changed between the two time ranges.
Note: The reporting endpoints are only available to Plus and Pro plans.
Request
GET /v2/reports/user/replies HTTP/1.1
Authorization: Bearer oauth_token
URL Parameters
Parameter | Type | Examples | Description |
---|---|---|---|
user |
number |
user=447723 |
User for whom the report is generated |
start |
date |
start=2019-05-02T12:00:00Z |
Start of the interval |
end |
date |
end=2019-06-02T12:00:00Z |
End of the interval |
previousStart |
date |
previousStart=2019-04-02T12:00:00Z |
Start of the previous interval |
previousEnd |
date |
previousEnd=2019-05-02T12:00:00Z |
End of the previous interval |
mailboxes |
number |
mailboxes=123 mailboxes=123,567 |
List of comma separated ids to filter on mailboxes |
tags |
number |
tags=99787 tags=5666,99787 |
List of comma separated ids to filter on tags |
types |
enumeration |
types=email |
List of comma separated conversation types to filter on, valid values are email , chat , phone |
folders |
number |
folders=991 folders=991,992 |
List of comma separated folder ids to filter on folders |
viewBy |
enumeration |
viewBy=day |
Represents the resolution at which data is returned; valid values are:day (only allowed if time range is <= 60 days)week (only allowed if time range is <= 1 year)month (only allowed if time range is >= 61 days) |
Response
HTTP/1.1 200 OK
Content-Type: application/json
{
"current" : [ {
"date" : "2016-07-01T12:00:00Z",
"replies" : 0
}, {
"date" : "2016-08-01T12:00:00Z",
"replies" : 0
}, {
"date" : "2016-09-01T12:00:00Z",
"replies" : 0
}, {
"date" : "2016-10-01T12:00:00Z",
"replies" : 0
}, {
"date" : "2016-11-01T12:00:00Z",
"replies" : 0
}, {
"date" : "2016-12-01T12:00:00Z",
"replies" : 0
} ]
}
Response fields
Path | Type | Description |
---|---|---|
current |
Array |
Contains data points describing the number of replies this user sent for the current time range |
previous |
Array |
Contains data points describing the number of replies this user sent for the previous time range. Only included if a previous time range was specified |
Response fields
Path | Type | Description |
---|---|---|
date |
String |
The beginning date represented by this data point |
replies |
Number |
The number of replies this user sent from date until the duration specified by viewBy |