Event Logs
The following API is used to fetch, all audit events of the application.
Description
The auditEventLogs
endpoint is used to fetch all the important events for auditing purposes that occurred while using the application.
Request
Endpoint
ui//v1/auditEventLogs
Method
POST
Header
Content-Type: application/json
Attributes
ELEMENT | DESCRIPTION |
---|---|
startDate | Required Start Date to fetch the events from |
endDate | Required End Date to fetch the events till that date |
userId | Optional All session records belonging to the merchant are fetched if not mentioned |
merchantId | Optional specific id of the merchant |
Request Body
{{
"startDate": "2024-08-08",
"endDate": "2024-08-09",
"userId": "1",
"merchantId": [],
"auditEventTypes": []
}
Response
{
"records": [
{
"id": 64,
"createdDateTime": 1723216894000,
"sessionId": 8682,
"eventType": "Verify One-time Passcode",
"eventDescription": "The Username superuser has entered a valid 8-digit One-time Passcode.",
"userId": null,
"userName": "superuser",
"objectType": "User",
"objectId": 1,
"oldValue": "",
"newValue": "",
"merchantId": 1,
"jSessionId": null,
"merchantName": "Datum Technologies Group"
},
{
"id": 65,
"createdDateTime": 1723216894000,
"sessionId": 8682,
"eventType": "View Card/Account Info",
"eventDescription": "The Username superuser has accessed the Unlock Card/Account Info feature on Tokenized Payment Method Order Id vbelpnhp2p0y",
"userId": null,
"userName": "superuser",
"objectType": "TokenizedPaymentMethod",
"objectId": 137,
"oldValue": "",
"newValue": "",
"merchantId": 1,
"jSessionId": null,
"merchantName": "Datum Technologies Group"
},
{
"id": 63,
"createdDateTime": 1723216888000,
"sessionId": 8682,
"eventType": "Verify One-time Passcode",
"eventDescription": "The Username superuser has entered an invalid 8-digit One-time Passcode.",
"userId": null,
"userName": "superuser",
"objectType": "User",
"objectId": 1,
"oldValue": "",
"newValue": "",
"merchantId": 1,
"jSessionId": null,
"merchantName": "Datum Technologies Group"
},
{
"id": 62,
"createdDateTime": 1723216859000,
"sessionId": 8682,
"eventType": "Generate One-time Passcode",
"eventDescription": "The Username superuser has requested the 8-digit One-time Passcode.",
"userId": null,
"userName": "superuser",
"objectType": "User",
"objectId": 1,
"oldValue": "",
"newValue": "",
"merchantId": 1,
"jSessionId": null,
"merchantName": "Datum Technologies Group"
}
],
"recordCount": null,
"message": null
}
Updated As Of Version 6.3.1.10