GET feedback/events.json
Returns Feedback creation and response events that occur in a specified time period. Please note that the max to_time is 24 hours prior to the current time.
Resource Information¶
Response formats | JSON |
Requires authentication? | Yes (user context only) |
Rate limited? | Yes |
Requests / 15 min window (user auth) | 1,000 |
Parameters¶
from_time (required) | Required on the 1st page. Epoch timestamp in milliseconds. Example: 1451936737470 The range is inclusive. |
to_time (required) | Required on the 1st page. Epoch timestamp in milliseconds. Example: 1451936737470 The range is inclusive. The max to_time is 24 hours before current time. Requests for more recent data via this endpoint will receive an error. |
count (required) |
|
cursor (optiona) |
|
Response Values¶
events | An array of events. |
event_type | Possible values: feedback.created, feedback.updated |
next_cursor | Values are unique to a given from_time/to_time range. |
Example Result¶
{
"events":[
{
"event_type": "feedback.updated",
"created_at": "SatDec1517:58:22+00002015",
"feedback": {
"created_at": "SatDec1517:58:20+00002015",
"updated_at": "SatDec1517:59:22+00002015",
"id": "123456789",
...
}
},
{
"event_type": "feedback.created",
"created_at": "SatDec1517:59:22+00002015",
"feedback":{
"created_at": "SatDec1517:59:22+00002015",
"updated_at": "SatDec1517:59:22+00002015",
"id": "123456799",
...
}
}
],
"next_cursor": "10011"
}