get https://api.fastspring.com/events/processed
Retrieve processed events within a specific time range. You can specify the time range with the ?begin=unixtime&end=unixtime: and ?days=: modifiers.
// No begin or days specified
{
"action": "events.get",
"result": "error",
"error": {
"begin": "Begin required."
}
}
// Begin or days older than 30 days
{
"action": "events.get",
"result": "error",
"error": {
"begin": "Begin must be after '1488061077706' (Sat Feb 25 22:17:57 UTC 2017)."
}
}
// Begin time later than end time
{
"action": "events.get",
"result": "error",
"error": {
"begin": "Begin must be less than end."
}
}
// Unparseable values
{
"action": "events.get",
"result": "error",
"error": {
"begin": "Can not parse begin",
"end": "Can not parse end."
"days": "Can not parse days."
}
}