Get statistics about events
Gets the number of times each trigger has been called with and without success,
grouped by status.
Request |
|
Parameters |
|
Headers |
|
Response | A JSON response that contains statistics about events, i.e., the number of times each trigger has been called with and without success. |
Status |
|
Sample response
{
"events": [
{
"failed": [
{"GoogleMap": 0},
{"CompleteStoreURLOnCreate": 0},
{"SynchronizeOnUpdate": 0},
{"CheckAvailabilityOnCreate": 0}
]
},
{
"completed": [
{"SynchronizeOnUpdate": 5},
{"GoogleMap": 2},
{"CompleteStoreURLOnCreate": 2},
{"CheckAvailabilityOnCreate": 2}
]
}
]
}