getAppEvents method

Future<List<AppEvent>> getAppEvents({
  1. required String appId,
  2. String? authorization,
  3. String? userAgent,
})

Get app events

Get a list of events that can be triggered based on data or user actions in this application, includes: Email notification, Reminders, Subscriptions, QB Actions, Webhooks, record change triggered Automations (does not include scheduled).

Implementation

Future<List<AppEvent>> getAppEvents({
  required String appId,
  String? authorization,
  String? userAgent}) async {
  return _appsService.getAppEvents(appId: appId, authorization: authorization, userAgent: userAgent);
}