Retrieves a list of system events.
List of system events retrieved.
Unauthorized access. Invalid credentials used.
Access forbidden.
// all parameters are optional const firstCollection = await api.events.getAll(); // alternatively you can specify one or more of them const params = {limit: 20, offset: 100}; const secondCollection = await api.events.getAll(params); // access the collection items, each item is a Member secondCollection.items.forEach(event => console.log(event.fields.eventType));
[- {
- "eventType": "account-password-reset-requested",
- "title": "string",
- "description": "string",
- "category": "billing",
- "rulesCount": 0,
- "bindsCount": 0,
- "_links": [
- {
- "href": "string",
- "rel": "self"
}
]
}
]