Get Audit logs
GET/ext/v1/audit/list
The Audit Log API allows you to programmatically access and retrieve logs of access and activity within your organization. You have the capability to utilize this API to fetch logs within a defined date range. The API delivers paginated responses, each containing up to 100 records per page.
Supported Audit log events
Audit log Event | Description |
---|---|
app_it_owner_assigned | An IT owner was assigned to an application. |
connect_error | An error occurred during a connection attempt. |
user_type_changed | The type of a user account was changed. |
integration_sync_completed | A synchronization process with an integration was completed. |
playbook_published | A playbook was published successfully. |
user_identified_from_an_integration | A user was identified through an integration. |
app_archived | An application was archived. |
disconnect | A disconnection from a service or integration occurred. |
invite_user | A user was invited to the system. |
auth_error | An authentication error occurred. |
user_application_archived | A user's application was archived. |
app_finance_owner_assigned | A finance owner was assigned to an application. |
user_archived | A user account was archived. |
transactions_identified_manually | Transactions were identified manually. |
department_created_via_integration | A department was created through an integration. |
connect_success | A successful connection to a service or integration was made. |
user_role_changed | The role of a user was changed. |
integration_sync_started | The synchronization process with an integration started. |
vendor_updated | A vendor's information was updated. |
user_reset_password | A user reset their password. |
app_requested | An application was requested. |
rule_triggered | A rule was triggered within the system. |
user_application_role_changed | A user's role within an application was changed. |
playbook_created_manually | A playbook was created manually. |
app_note_reminder_added | A reminder note was added to an application. |
user_note_added | A note was added to a user's account. |
user_designation_changed | A user's designation was changed. |
user_added_manually | A user was added to the system manually. |
app_note_added | A note was added to an application. |
app_department_split_category_changed | A department's split category within an application was changed. |
payment_method_assigned_to_transaction | A payment method was assigned to a transaction. |
notification_setting_changed | A user's notification settings were changed. |
connect_initiated | The initiation of a connection to a service or integration. |
transactions_archived | Transactions were archived. |
app_identified_from_integration | An application was identified through an integration. |
app_authorisation_status_changed | The authorization status of an application was changed. |
user_status_changed | The status of a user was changed. |
user_application_status_changed | The status of a user's application was changed. |
department_created_manually | A department was created manually. |
org_integration_deleted | An organization's integration was deleted. |
user_soure_added | A user source was added. |
user_marked_for_offboarding | A user was marked for offboarding. |
license_requested | A license for an application or service was requested. |
user_marked_for_onboarding | A user was marked for onboarding. |
app_risk_changed | The risk level of an application was changed. |
app_contract_edited | An application's contract was edited. |
run_workflow | A workflow was executed. |
data_update_started | A data update process was initiated. |
app_added_manually | An application was added to the system manually. |
user_department_changed | A user's department was changed. |
app_license_added | A license was added to an application. |
user_reporting_manager_changed | A user's reporting manager was changed. |
users_added_to_app | Users were added to an application. |
user_login | A user login event occurred. |
contract_it_owner_assigned | An IT owner was assigned to a contract. |
department_archived | A department was archived. |
app_contract_added | A contract was added to an application. |
reconnect_initiated | The re-initiation of a connection to a service or integration. |
app_owner_assigned | An owner was assigned to an application. |
vendor_added | A new vendor was added to the system. |
department_owner_updated | The owner of a department was updated. |
Request
Query Parameters
The page parameter determines which set of data is returned in a paginated response. It's usually paired with the pageSize parameter to manage the number of records shown per page. By default, the page value is set to 1. To browse through the entire response, begin with page 1 and keep making requests until you receive no results.
The pageSize parameter specifies how many records are displayed per page in a paginated response. It's commonly used alongside the page parameter to navigate through paginated results. The default value for pageSize is 100.
The startDate parameter indicates the beginning of the date range for retrieving audit logs. If not provided, it defaults to seven days before the current date. The startDate must be earlier than the endDate and should be sent as a string in ISO-8601 format, such as 2023-12-01T22:00:00.000Z.
The endDate parameter specifies the end date of the audit log date range you wish to retrieve. If not provided, it defaults to the current date. The endDate value must follow the startDate value and be sent as a string in ISO-8601 format, for example, 2023-03-01T22:00:00.000Z. Note that logs can be retrieved for a maximum range of 7 days. If the specified range exceeds 7 days, the platform automatically adjusts the range and outputs logs from 7 days before the specified endDate.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (from schema)
- Success
Schema
Array [
]
items
object[]
{
"count": 3460,
"end_date": "2024-02-09T08:12:05.533Z",
"items": [
{
"_id": "65c098acec4db36d831b05e6",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:12:31 AM</b>",
"event_timestamp": "2024-02-05T08:12:31.517Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c098f8ec4db36d831b05ee",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:13:47 AM</b>",
"event_timestamp": "2024-02-05T08:13:47.975Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09b3fbacf7b19ad84f724",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:23:30 AM</b>",
"event_timestamp": "2024-02-05T08:23:30.498Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09b3fbacf7b19ad84f725",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:24:01 AM</b>",
"event_timestamp": "2024-02-05T08:24:01.661Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09c4dec4db36d831b0d9c",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:28:00 AM</b>",
"event_timestamp": "2024-02-05T08:28:00.429Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09d7bbacf7b19ad84f7c3",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:33:02 AM</b>",
"event_timestamp": "2024-02-05T08:33:02.396Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09eddc22bcead071429e5",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:38:55 AM</b>",
"event_timestamp": "2024-02-05T08:38:55.813Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c0a075c5553ffc775a4dda",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:45:44 AM</b>",
"event_timestamp": "2024-02-05T08:45:44.491Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c0a0e8c5553ffc775a4e02",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:47:39 AM</b>",
"event_timestamp": "2024-02-05T08:47:39.665Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c0a15fe7423aff0d844848",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "requests",
"event": "license_requested",
"event_description": "<b></b> license of <b>Jira</b> was requested by <b>Zluri Demo test</b> on <b>02/05/2024, 08:49:38</b>",
"event_timestamp": "2024-02-05T08:49:38.156Z",
"event_title": "<b></b> license of <b>Jira</b> is requested",
"event_type": "created"
},
{
"_id": "65c0a161bc3106ce3e87d8ec",
"actor": "automationrule",
"actor_id": "65b7a0daf65df6c899ed18e5",
"actor_name": "App rule for Jira",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>App rule for Jira</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.389Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ed",
"actor": "automationrule",
"actor_id": "64b65ee683dfb122281badf8",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.496Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ee",
"actor": "automationrule",
"actor_id": "65a3ecb00d31a83cbbae7902",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.505Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ef",
"actor": "automationrule",
"actor_id": "65a76104cc562095591d4bd5",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.512Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f0",
"actor": "automationrule",
"actor_id": "65aa5e9c574d4babc95e21cf",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.518Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f1",
"actor": "automationrule",
"actor_id": "65ae1728f0bc9db3357346b1",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.525Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f2",
"actor": "automationrule",
"actor_id": "65ae174893d3806331843490",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.532Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f3",
"actor": "automationrule",
"actor_id": "65ae174893d3806331843495",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.584Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f4",
"actor": "automationrule",
"actor_id": "65ae174893d380633184349e",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.594Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f5",
"actor": "automationrule",
"actor_id": "65ae174893d38063318434a3",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.601Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f6",
"actor": "automationrule",
"actor_id": "65ae2e90f9d5deeb6b86f762",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.608Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f7",
"actor": "automationrule",
"actor_id": "65ae2e90f9d5deeb6b86f768",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.614Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f8",
"actor": "automationrule",
"actor_id": "65ae2e91f9d5deeb6b86f79d",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.621Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f9",
"actor": "automationrule",
"actor_id": "65ae2e91f9d5deeb6b86f7a5",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.627Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fa",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb71",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.633Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fb",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb7e",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.640Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fc",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb86",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.647Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fd",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb8b",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.653Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fe",
"actor": "automationrule",
"actor_id": "65ae46c26f06433b9b1fe20a",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.658Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ff",
"actor": "automationrule",
"actor_id": "65ae58106f06433b9b1ff08d",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.665Z",
"event_title": "Rule triggered",
"event_type": "misc"
}
],
"page": 1,
"page_size": 30,
"start_date": "2024-02-05T08:12:05.533Z"
}
{
"count": 3460,
"end_date": "2024-02-09T08:12:05.533Z",
"items": [
{
"_id": "65c098acec4db36d831b05e6",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:12:31 AM</b>",
"event_timestamp": "2024-02-05T08:12:31.517Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c098f8ec4db36d831b05ee",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:13:47 AM</b>",
"event_timestamp": "2024-02-05T08:13:47.975Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09b3fbacf7b19ad84f724",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:23:30 AM</b>",
"event_timestamp": "2024-02-05T08:23:30.498Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09b3fbacf7b19ad84f725",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:24:01 AM</b>",
"event_timestamp": "2024-02-05T08:24:01.661Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09c4dec4db36d831b0d9c",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:28:00 AM</b>",
"event_timestamp": "2024-02-05T08:28:00.429Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09d7bbacf7b19ad84f7c3",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:33:02 AM</b>",
"event_timestamp": "2024-02-05T08:33:02.396Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c09eddc22bcead071429e5",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:38:55 AM</b>",
"event_timestamp": "2024-02-05T08:38:55.813Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c0a075c5553ffc775a4dda",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:45:44 AM</b>",
"event_timestamp": "2024-02-05T08:45:44.491Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c0a0e8c5553ffc775a4e02",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "users",
"event": "user_login",
"event_description": "<b>Zluri Demo test</b> was loggedIn on <b>2/5/2024, 8:47:39 AM</b>",
"event_timestamp": "2024-02-05T08:47:39.665Z",
"event_title": "<b>Zluri Demo test</b> was loggedIn",
"event_type": "login"
},
{
"_id": "65c0a15fe7423aff0d844848",
"actor": "user",
"actor_id": "605072ae40973f002d004cc6",
"actor_name": "Zluri Demo test",
"actor_role": "admin",
"entity": "requests",
"event": "license_requested",
"event_description": "<b></b> license of <b>Jira</b> was requested by <b>Zluri Demo test</b> on <b>02/05/2024, 08:49:38</b>",
"event_timestamp": "2024-02-05T08:49:38.156Z",
"event_title": "<b></b> license of <b>Jira</b> is requested",
"event_type": "created"
},
{
"_id": "65c0a161bc3106ce3e87d8ec",
"actor": "automationrule",
"actor_id": "65b7a0daf65df6c899ed18e5",
"actor_name": "App rule for Jira",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>App rule for Jira</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.389Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ed",
"actor": "automationrule",
"actor_id": "64b65ee683dfb122281badf8",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.496Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ee",
"actor": "automationrule",
"actor_id": "65a3ecb00d31a83cbbae7902",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.505Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ef",
"actor": "automationrule",
"actor_id": "65a76104cc562095591d4bd5",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.512Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f0",
"actor": "automationrule",
"actor_id": "65aa5e9c574d4babc95e21cf",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.518Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f1",
"actor": "automationrule",
"actor_id": "65ae1728f0bc9db3357346b1",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.525Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f2",
"actor": "automationrule",
"actor_id": "65ae174893d3806331843490",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.532Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f3",
"actor": "automationrule",
"actor_id": "65ae174893d3806331843495",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.584Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f4",
"actor": "automationrule",
"actor_id": "65ae174893d380633184349e",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.594Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f5",
"actor": "automationrule",
"actor_id": "65ae174893d38063318434a3",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.601Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f6",
"actor": "automationrule",
"actor_id": "65ae2e90f9d5deeb6b86f762",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.608Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f7",
"actor": "automationrule",
"actor_id": "65ae2e90f9d5deeb6b86f768",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.614Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f8",
"actor": "automationrule",
"actor_id": "65ae2e91f9d5deeb6b86f79d",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.621Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8f9",
"actor": "automationrule",
"actor_id": "65ae2e91f9d5deeb6b86f7a5",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.627Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fa",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb71",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.633Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fb",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb7e",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.640Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fc",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb86",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.647Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fd",
"actor": "automationrule",
"actor_id": "65ae2ef4f9d5deeb6b86fb8b",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.653Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8fe",
"actor": "automationrule",
"actor_id": "65ae46c26f06433b9b1fe20a",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.658Z",
"event_title": "Rule triggered",
"event_type": "misc"
},
{
"_id": "65c0a161bc3106ce3e87d8ff",
"actor": "automationrule",
"actor_id": "65ae58106f06433b9b1ff08d",
"actor_name": "Standard Rule for Existing Applications",
"actor_role": null,
"entity": "automationrules",
"event": "rule_triggered",
"event_description": "Rule: <b>Standard Rule for Existing Applications</b> was triggered successfully.",
"event_timestamp": "2024-02-05T08:50:41.665Z",
"event_title": "Rule triggered",
"event_type": "misc"
}
],
"page": 1,
"page_size": 30,
"start_date": "2024-02-05T08:12:05.533Z"
}
Bad request
- application/json
- Schema
- Example (from schema)
- difference in end_date and start_date parameters must not be more than 7 days
- end_date paramater should be a later date than start_date parameter
- end_date parameter should be an ISO date string
- page parameter less than 1
- page_size parameter less than 1
- page_size parameter should be less than or equal to 100
- start_date parameter should be an ISO date string
Schema
Array [
]
errors
object[]
{
"code": "MISC",
"errors": [
{
"msg": "The page parameter must be equal to or greater than 1."
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "Logs can be retrieved for a maximum range of 7 days"
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "The end_date parameter must be a date later than the start_date."
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "The end_date parameter must be of ISO 8601 format"
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "The page parameter must be equal to or greater than 1."
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "The page_size parameter must be equal to or greater than 1."
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "The page_size parameter must be equal to or less than 100."
}
]
}
{
"code": "MISC",
"errors": [
{
"msg": "The start_date parameter must be of ISO 8601 format"
}
]
}