The event resource
Events are our way of letting you know when something that might interest you happens in Lucca.
Whenever it does a new event resource is created. For example, when a leave-request is eventually
approved, a leave-request.updated
event is created to notify you that its status changed.
In general, events occur whenever the state of a resource representation changes. The state of that
resource at the time of the change is embedded in the event’s data
attribute. Given the previous
example, the leave-request.updated
event will contain the representation of the corresponding leave-request
in its data
attribute.
About topics
The topic of an event indicates both the type of the related resource and the nature of the change.
Examples: leave.created
, employee.updated
, legal-entity.deleted
, etc…
About update events
{resource}.updated
events are triggered whenever an attribute of a resource that already existed is changed.
This behavior is restricted to the direct attributes of the resource. As such, a change in the state of an embedded
resource does not trigger a {resource}.updated
event on the embedding resource.
The list of modified attributes, as well as their value before the change, can be found in the data.previousAttributes
JSON object (<attribute> => <previous_value>
dictionary).
About ApiVersion
Any time an event occurs, it is created as many times as there are supported Lucca API versions.
Each event thus has an apiVersion
attribute that indicates the relevant API version.
The data
contained in an event is a representation of the related resource that conforms to the schema in the related
API version.
Consuming events
Option #1. As with other API resources, you can use the API endpoints to retrieve an individual event or a list of events from the API.
Option #2. We also have a separate webhooks system for sending the event directly to an endpoint on your server.
Represents a change made to the state of a resource.
Unique string identifier of this event.
"event"
Absolute URL for the event object.
Indicates which type of event occurred. Usually concatenates the name of the object type with the kind of change ("created", "updated" or "deleted").
"confirmation"
"leave.created"
Timezoned timestamp of the moment when this event occurred.
URL of the tenant. Ensures unicity of {source} + {id}.
Representation of the resource whose change triggered the event. Please note that this is the representation of the resource just after the change, and it may have changed again since then.
API version of the resource representation contained in data. Not to be confused with the API version of the representation of this present event, which is indicated in the Api-Version
HTTP header.
Business Establishment of the Resource in the Event, if there is one.
{
"id": "5",
"type": "business-establishment",
"url": "https://example.ilucca.net/lucca-api/business-establishments/5"
}
Only sent on *.updated
event topics.
Keys are the list of modified attributes.
Values are the values of these attributes before the change.
This is only available for some Resources.
If a value in the dictionary is NULL, it can either mean that the original
value was NULL or that we can't retrieve them for this Resource.
Was this page helpful?