When Emma launched their new-and-improved API, they included webhooks. Webhooks are notifications of business events that are triggered when something happens inside Emma. With a little programming, you can set up an endpoint on your website or server to receive these notifications.
For example, you can now:
Retrieve a list of all the event types for which you can deploy Webhooks in Emma.
Arguments: (none)
Use:
require_once('../../MyEmmaPHP.php');
try {
$me = new MyEmmaPHP();
$retval = $me->listWebhookEventTypes();
print_r($retval);
} catch ( Exception $e ) {
echo $e->getMessage() . "\n\n";
}
Wrapper for: list_webhook_event_types
People talking about '@synergycode':