Webhooks API
Aurinko's Webhooks API enables real-time event notifications for email, calendar, contacts, and task updates by subscribing to specific resources and handling webhook payloads efficiently.
Last updated
Aurinko's Webhooks API enables real-time event notifications for email, calendar, contacts, and task updates by subscribing to specific resources and handling webhook payloads efficiently.
Last updated
Webhooks allow your apps to receive real-time updates from the Aurinko platform. By registering a webhook URL, you can get notified when specific events happen.
First, create your account in the , then follow the guide to .
Prepare an endpoint URL on your server.
Provide this endpoint to our system through the process.
Ensure your endpoint can handle POST requests and supports the initial .
To leverage native Gmail push notifications .
The Aurinko webhook events are associated with API resources (parts of the API) and subscriptions are created for those resources. Here is the list of available API resources:
/email/messages - events representing mailbox changes
/email/tracking - events representing email tracking changes
/calendars/primary/events, /calendars/{calId}/events - events representing calendar changes
/contacts - events representing address book changes
/tasklists/default/tasks, /tasklists/{tlId}/tasks - events representing todo item changes
Response:
Each API resource may have its own payload format. Below is a sample payload that is common for email/messages
, /contacts
, /calendars/{id}/events
, /tasklists/{id}/tasks
:
Next, an example of the email/tracking
events (eventType can be open, reply, or bounce):
When an email is first processed for tracking, an ‘Initial’ event is triggered. This event occurs only once when tracking begins, typically upon sending the email, and is not included in subsequent tracking updates:
When you receive a webhook:
Validate the signature to ensure it's from the Aurinko platform.
Respond with a 200 OK
as quickly as possible.
Process the event data asynchronously.
If your endpoint responds with any HTTP status other than 200 OK
or 422 Unprocessable
, Aurinko will attempt to resend the webhook 1, 2, 4, 8 ... etc seconds (the interval won't increase beyond 10mins). Responding with the 422 HTTP status results in removing the subscription.
If for some reason your webhook subscription becomes problematic (i.e. because account credentials have expired), Aurinko will send a lifecycle event like this:
When the subscription comes back to life, Aurinko will send:
Webhooks are secured using a shared secret that is used to generate a signature. The signature is sent in the HTTP header of each request, allowing you to verify the authenticity (see ). The signing secret can be found on your app's dashboard page:
To create a new subscription POST a resource and a notification url to the :