Event Log Create
Event Log Create
This event has been available since 1.30.0
This event is generated when an event log is created.
event.log.create
Event Scope
This is a system scoped event. If enabled in
, this event will be sent.The tenant webhook enable or disable settings do not apply and will be ignored.
Transaction Compatibility
This event is non-transactional. The operation will succeed regardless of the webhook response status code.
Event Body
- event.createInstant [Long]
-
The instant that the event was generated.
- event.eventLog [Object]
-
The event log for this event. See the Event Logs API for property definitions and example JSON.
- event.id [UUID]
-
The unique Id of the event. You may receive an event more than once based upon your transaction settings. This Id may be used to identify a duplicate event.
- event.info.data [Object]
-
An object that can hold any information about the event that should be persisted.
- event.info.deviceDescription [String]
-
The description of the device associated with the event.
- event.info.deviceName [String]
-
The device name associated with the event.
- event.info.deviceType [String]
-
The type of device associated with the event.
- event.info.ipAddress [String]
-
The source IP address of the event.
- event.info.location.city [String]
-
The city where the event originated.
Note: A paid plan is required to utilize event info location.
- event.info.location.country [String]
-
The country where the event originated.
Note: A paid plan is required to utilize event info location.
- event.info.location.latitude [String]
-
The latitude where the event originated.
Note: A paid plan is required to utilize event info location.
- event.info.location.longitude [String]
-
The longitude where the event originated.
Note: A paid plan is required to utilize event info location.
- event.info.location.region [String]
-
The geographic location where the event originated.
Note: A paid plan is required to utilize event info location.
- event.info.location.zipcode [String]
-
The zip code where the event originated.
Note: A paid plan is required to utilize event info location.
- event.info.os [String]
-
The operating system associated with the event.
- event.info.userAgent [String]
-
The user agent associated with the event.
- event.type [String]
-
The event type, this value will always be
event.log.create
.
{
"event": {
"createInstant": 1629141543064,
"eventLog": {
"id": 1773,
"insertInstant": 1629141543059,
"message": "Failed to get status result.",
"type": "Debug"
},
"id": "29e3f639-649e-4a5c-bc4b-eec7f89ee20c",
"info": {
"ipAddress": "42.42.42.42",
"location": {
"city": "Denver",
"country": "US",
"displayString": "Denver, CO, US",
"latitude": 39.73915,
"longitude": -104.9847,
"region": "CO"
},
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.115 Safari/537.36"
},
"type": "event-log.create"
}
}
Feedback
How helpful was this page?
See a problem?
File an issue in our docs repo
Have a question or comment to share?
Visit the FusionAuth community forum.