Stats
Use this endpoint to obtain statistical data from Mautic’s database tables.
Using the Mautic API library
You can interact with this API using the Mautic API Library as below, or the various HTTP endpoints described in this document.
<?php
use Mautic\MauticApi;
use Mautic\Auth\ApiAuth;
// ...
$initAuth = new ApiAuth();
$auth = $initAuth->newAuth($settings);
$apiUrl = "https://example.com";
$api = new MauticApi();
$statsApi = $api->newApi("stats", $auth, $apiUrl);
Get stat tables
Retrieves a list of all available stat tables and their columns.
<?php
//...
$tables = $statsApi->get();
HTTP request
GET /stats
Response
Returns
200 OKwhen the request successfully retrieves the stat tables.
{
"availableTables": [
"asset_downloads",
"audit_log",
"campaign_lead_event_log",
"campaign_leads",
"channel_url_trackables",
"companies_leads",
"dynamic_content_lead_data",
"dynamic_content_stats",
"email_stat_replies",
"email_stats",
"email_stats_devices",
"form_submissions",
"ip_addresses",
"lead_categories",
"lead_companies_change_log",
"lead_devices",
"lead_donotcontact",
"lead_event_log",
"lead_frequencyrules",
"lead_lists_leads",
"lead_points_change_log",
"lead_stages_change_log",
"lead_utmtags",
"page_hits",
"page_redirects",
"point_lead_action_log",
"point_lead_event_log",
"push_notification_stats",
"sms_message_stats",
"stage_lead_action_log",
"video_hits",
"webhook_logs"
],
"tableColumns": {
"asset_downloads": [
"asset_id",
"code",
"date_download",
"email_id",
"id",
"ip_id",
"lead_id",
"referer",
"source",
"source_id",
"tracking_id"
],
"audit_log": [
"action",
"bundle",
"date_added",
"details",
"id",
"ip_address",
"object",
"object_id",
"user_id",
"user_name"
],
"campaign_lead_event_log": [
"campaign_id",
"channel",
"channel_id",
"date_triggered",
"event_id",
"id",
"ip_id",
"is_scheduled",
"lead_id",
"metadata",
"non_action_path_taken",
"rotation",
"system_triggered",
"trigger_date"
],
"campaign_leads": [
"campaign_id",
"date_added",
"date_last_exited",
"lead_id",
"manually_added",
"manually_removed",
"rotation"
],
"channel_url_trackables": [
"channel",
"channel_id",
"hits",
"redirect_id",
"unique_hits"
],
"companies_leads": [
"company_id",
"date_added",
"is_primary",
"lead_id",
"manually_added",
"manually_removed"
],
"dynamic_content_lead_data": [
"date_added",
"dynamic_content_id",
"id",
"lead_id",
"slot"
],
"dynamic_content_stats": [
"date_sent",
"dynamic_content_id",
"id",
"last_sent",
"lead_id",
"sent_count",
"sent_details",
"source",
"source_id",
"tokens"
],
"email_stat_replies": [
"date_replied",
"id",
"message_id",
"stat_id"
],
"email_stats": [
"copy_id",
"date_read",
"date_sent",
"email_address",
"email_id",
"id",
"ip_id",
"is_failed",
"is_read",
"last_opened",
"lead_id",
"list_id",
"open_count",
"open_details",
"retry_count",
"source",
"source_id",
"tokens",
"tracking_hash",
"viewed_in_browser"
],
"email_stats_devices": [
"date_opened",
"device_id",
"id",
"ip_id",
"stat_id"
],
"form_submissions": [
"date_submitted",
"form_id",
"id",
"ip_id",
"lead_id",
"page_id",
"referer",
"tracking_id"
],
"ip_addresses": [
"id",
"ip_address",
"ip_details"
],
"lead_categories": [
"category_id",
"date_added",
"id",
"lead_id",
"manually_added",
"manually_removed"
],
"lead_companies_change_log": [
"action_name",
"company_id",
"date_added",
"event_name",
"id",
"lead_id",
"type"
],
"lead_devices": [
"client_info",
"date_added",
"device",
"device_brand",
"device_fingerprint",
"device_model",
"device_os_name",
"device_os_platform",
"device_os_shortname",
"device_os_version",
"id",
"lead_id",
"tracking_id"
],
"lead_donotcontact": [
"channel",
"channel_id",
"comments",
"date_added",
"id",
"lead_id",
"reason"
],
"lead_event_log": [
"action",
"bundle",
"date_added",
"id",
"lead_id",
"object",
"object_id",
"properties",
"user_id",
"user_name"
],
"lead_frequencyrules": [
"channel",
"date_added",
"frequency_number",
"frequency_time",
"id",
"lead_id",
"pause_from_date",
"pause_to_date",
"preferred_channel"
],
"lead_lists_leads": [
"date_added",
"leadlist_id",
"lead_id",
"manually_added",
"manually_removed"
],
"lead_points_change_log": [
"action_name",
"date_added",
"delta",
"event_name",
"id",
"ip_id",
"lead_id",
"type"
],
"lead_stages_change_log": [
"action_name",
"date_added",
"event_name",
"id",
"lead_id",
"stage_id"
],
"lead_utmtags": [
"date_added",
"id",
"lead_id",
"query",
"referer",
"remote_host",
"url",
"user_agent",
"utm_campaign",
"utm_content",
"utm_medium",
"utm_source",
"utm_term"
],
"page_hits": [
"browser_languages",
"city",
"code",
"country",
"date_hit",
"date_left",
"device_id",
"email_id",
"id",
"ip_id",
"isp",
"lead_id",
"organization",
"page_id",
"page_language",
"query",
"redirect_id",
"referer",
"region",
"remote_host",
"source",
"source_id",
"tracking_id",
"url",
"url_title",
"user_agent"
],
"page_redirects": [
"checked_out",
"checked_out_by",
"checked_out_by_user",
"created_by",
"created_by_user",
"date_added",
"date_modified",
"hits",
"id",
"is_published",
"modified_by",
"modified_by_user",
"redirect_id",
"unique_hits",
"url"
],
"point_lead_action_log": [
"date_fired",
"ip_id",
"lead_id",
"point_id"
],
"point_lead_event_log": [
"date_fired",
"event_id",
"ip_id",
"lead_id"
],
"push_notification_stats": [
"click_count",
"click_details",
"date_clicked",
"date_read",
"date_sent",
"id",
"ip_id",
"is_clicked",
"last_clicked",
"lead_id",
"list_id",
"notification_id",
"retry_count",
"source",
"source_id",
"tokens",
"tracking_hash"
],
"sms_message_stats": [
"date_sent",
"id",
"ip_id",
"lead_id",
"list_id",
"sms_id",
"source",
"source_id",
"tokens",
"tracking_hash"
],
"stage_lead_action_log": [
"date_fired",
"ip_id",
"lead_id",
"stage_id"
],
"video_hits": [
"browser_languages",
"channel",
"channel_id",
"city",
"code",
"country",
"date_hit",
"date_left",
"duration",
"guid",
"id",
"ip_id",
"isp",
"lead_id",
"organization",
"page_language",
"query",
"referer",
"region",
"remote_host",
"time_watched",
"url",
"user_agent"
],
"webhook_logs": [
"date_added",
"id",
"note",
"runtime",
"status_code",
"webhook_id"
]
}
}
Stats properties
Name |
Type |
Description |
|---|---|---|
|
array |
List of available tables available for query through this endpoint |
|
object |
Object containing each table name as a key with an array of column names as the value |
Get stats from a table
Retrieves rows from the specified statistical table.
<?php
$table = 'asset_downloads';
$start = 0;
$limit = 50;
$order = [
[
'col' => 'id',
'dir' => 'asc'
]
];
$where = [
[
'col' => 'id',
'expr' => 'gt',
'val' => 3,
]
];
$stats = $statsApi->get($table, $start, $limit, $order, $where);
HTTP request
GET /stats/TABLE
Query parameters
Name |
Type |
Description |
|---|---|---|
|
int |
Row offset to start from. Defaults to 0. |
|
int |
Number of rows to return. Defaults to 30. |
|
array |
Array of sorting definitions. Each definition has |
|
array |
Array of filter conditions. Each condition has |
The expr parameter in $where arrays
The expr parameter supports most methods from Doctrine’s ExpressionBuilder:
Method |
Description |
|---|---|
|
Value equal to the specified input |
|
Value not equal to the specified input |
|
Value less than the specified input |
|
Value less than or equal to the specified input |
|
Value greater than the specified input |
|
Value greater than or equal to the specified input |
|
Identification of fields with no data |
|
Identification of fields with any data |
|
Value matching a specific text pattern |
|
Value not matching a specific text pattern |
|
Match for any value within the specified array |
|
Exclusion of all values within the specified array |
|
Value falling between two specified inputs |
Response
Returns
200 OKwhen the request successfully retrieves the stats from the table.
{
"total": 1,
"stats": [
{
"id": "1",
"asset_id": "1",
"ip_id": "1",
"lead_id": "31",
"date_download": "2023-06-30 08:51:22",
"code": "200",
"tracking_id": "b3259e7709f35b7428b7bffcbb3d1d713ac1526c"
}
]
}
Stats from a table properties
Name |
Type |
Description |
|---|---|---|
|
int |
Total number of matching rows |
|
array |
Array of row objects. Columns vary by table. |
cURL example
When using cURL, encode the array parameters as query string. For example, to filter by id = 3:
curl "https://example.com/api/stats/asset_downloads?where%5B0%5D%5Bcol%5D=id&where%5B0%5D%5Bexpr%5D=eq&where%5B0%5D%5Bval%5D=3"
This query string is equivalent to:
<?php
$where = [
[
'col' => 'id',
'expr' => 'eq',
'val' => 3,
]
];
Available tables
The following tables are available through the Stats API. Tables require appropriate User permissions to access.
Contact statistics
Table |
Description |
|---|---|
|
Association between Contacts and Companies |
|
Category assignments for Contacts |
|
History of Contact and Company associations |
|
Device information tracked for Contacts |
|
Do-not-contact preferences by Contact and Channel |
|
Activity log for Contact events |
|
Contact frequency and Channel preferences |
|
Contact membership in Segments |
|
History of Contact Points changes |
|
History of Contact Stage transitions |
|
UTM parameters tracked for Contacts |
companies_leads
Association between Contacts and Companies.
Column |
Type |
Description |
|---|---|---|
|
int |
ID of the Company |
|
datetime |
Date and time when Mautic created the association |
|
boolean |
Primary status - |
|
int |
ID of the Contact |
|
boolean |
Whether a User added the association manually |
|
boolean |
Whether a User removed the association manually |
lead_categories
Category assignments for Contacts.
Column |
Type |
Description |
|---|---|---|
|
int |
ID of the Category |
|
datetime |
Date and time when Mautic assigned the Category |
|
int |
Primary key |
|
int |
ID of the Contact |
|
boolean |
Whether a User added the Category manually |
|
boolean |
Whether a User removed the Category manually |
lead_companies_change_log
History of Contact and Company associations.
Column |
Type |
Description |
|---|---|---|
|
string |
Name of the action performed |
|
int |
ID of the Company |
|
datetime |
Date and time of the change |
|
string |
Name of the event that triggered the change |
|
int |
Primary key |
|
int |
ID of the Contact |
|
string |
Type of change |
lead_devices
Device information tracked for Contacts.
Column |
Type |
Description |
|---|---|---|
|
string |
Client information |
|
datetime |
Date and time when Mautic first tracked the device |
|
string |
Device type |
|
string |
Device manufacturer or brand |
|
string |
Unique device fingerprint |
|
string |
Device model name |
|
string |
Operating system name |
|
string |
Operating system platform |
|
string |
Abbreviated operating system name |
|
string |
Operating system version |
|
int |
Primary key |
|
int |
ID of the Contact |
|
string |
Tracking identifier for the device |
lead_donotcontact
Do-not-contact preferences by Contact and Channel.
Column |
Type |
Description |
|---|---|---|
|
string |
Communication Channel such as |
|
int |
ID of the specific Channel item |
|
string |
Additional comments about the do-not-contact entry |
|
datetime |
Date and time when Mautic added the preference |
|
int |
Primary key |
|
int |
ID of the Contact |
|
int |
Reason code for the do-not-contact status |
lead_event_log
Activity log for Contact events.
Column |
Type |
Description |
|---|---|---|
|
string |
Action that the system performed |
|
string |
Mautic bundle that triggered the event |
|
datetime |
Date and time of the event |
|
int |
Primary key |
|
int |
ID of the Contact |
|
string |
Object type involved in the event |
|
int |
ID of the object |
|
string |
Additional event properties in JSON format |
|
int |
ID of the User who triggered the event |
|
string |
Name of the User who triggered the event |
lead_frequencyrules
Contact frequency and Channel preferences.
Column |
Type |
Description |
|---|---|---|
|
string |
Communication Channel |
|
datetime |
Date and time when Mautic created the rule |
|
int |
Maximum number of messages allowed |
|
string |
Time period for the frequency limit |
|
int |
Primary key |
|
int |
ID of the Contact |
|
datetime |
Start date for communication pause |
|
datetime |
End date for communication pause |
|
boolean |
Preferred Channel for the Contact |
lead_lists_leads
Contact membership in Segments.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic added the Contact to the Segment |
|
int |
ID of the Segment |
|
int |
ID of the Contact |
|
boolean |
Whether a User added the Contact manually |
|
boolean |
Whether a User removed the Contact manually |
lead_points_change_log
History of Contact Points changes.
Column |
Type |
Description |
|---|---|---|
|
string |
Name of the action that changed the Points |
|
datetime |
Date and time of the Points change |
|
int |
Number of Points added or removed |
|
string |
Name of the event that triggered the change |
|
int |
Primary key |
|
int |
ID of the IP address associated with the change |
|
int |
ID of the Contact |
|
string |
Type of Points change |
lead_stages_change_log
History of Contact Stage transitions.
Column |
Type |
Description |
|---|---|---|
|
string |
Name of the action that changed the Stage |
|
datetime |
Date and time of the Stage change |
|
string |
Name of the event that triggered the change |
|
int |
Primary key |
|
int |
ID of the Contact |
|
int |
ID of the Stage |
Asset statistics
Table |
Description |
|---|---|
|
Asset download events |
asset_downloads
Asset download events.
Column |
Type |
Description |
|---|---|---|
|
int |
ID of the downloaded Asset |
|
string |
HTTP response code |
|
datetime |
Date and time of the download |
|
int |
ID of the Email containing the Asset link |
|
int |
Primary key |
|
int |
ID of the IP address |
|
int |
ID of the Contact who downloaded the Asset |
|
string |
Referring URL |
|
string |
Source of the download |
|
int |
ID of the source item |
|
string |
Tracking identifier |
Campaign statistics
Table |
Description |
|---|---|
|
Contacts in Campaigns |
|
Execution log for Campaign Events |
campaign_leads
Contacts in Campaigns.
Column |
Type |
Description |
|---|---|---|
|
int |
ID of the Campaign |
|
datetime |
Date and time when Mautic added the Contact to the Campaign |
|
datetime |
Date and time when the Contact last exited the Campaign |
|
int |
ID of the Contact |
|
boolean |
Whether a User added the Contact manually |
|
boolean |
Whether a User removed the Contact manually |
|
int |
Number of times the Contact went through the Campaign |
campaign_lead_event_log
Execution log for Campaign Events.
Column |
Type |
Description |
|---|---|---|
|
int |
ID of the Campaign |
|
string |
Communication Channel used |
|
int |
ID of the Channel item |
|
datetime |
Date and time when Mautic triggered the event |
|
int |
ID of the Campaign Event |
|
int |
Primary key |
|
int |
ID of the IP address |
|
boolean |
Scheduling status - |
|
int |
ID of the Contact |
|
string |
Additional event metadata in JSON format |
|
boolean |
Path status - |
|
int |
Number of times the Contact went through the Campaign |
|
boolean |
Whether the system automatically triggered the event |
|
datetime |
Scheduled trigger date and time |
Email statistics
Table |
Description |
|---|---|
|
Email send, open, and click statistics |
|
Device information for Email opens |
|
Email reply tracking |
email_stats
Email send, open, and click statistics.
Column |
Type |
Description |
|---|---|---|
|
int |
ID of the Email copy |
|
datetime |
Date and time when the Contact first read the Email |
|
datetime |
Date and time when Mautic sent the Email |
|
string |
Recipient Email address |
|
int |
ID of the Email |
|
int |
Primary key |
|
int |
ID of the IP address that opened the Email |
|
boolean |
Delivery status - |
|
boolean |
Read status - |
|
datetime |
Date and time when the Contact last opened the Email |
|
int |
ID of the Contact |
|
int |
ID of the Segment that received the Email |
|
int |
Number of times the Contact opened the Email |
|
string |
Details about Email opens in JSON format |
|
int |
Number of delivery retry attempts |
|
string |
Source of the Email send |
|
int |
ID of the source item |
|
string |
Token values used in the Email in JSON format |
|
string |
Unique hash for tracking this Email send |
|
boolean |
Browser view status - |
email_stats_devices
Device information for Email opens.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when the Contact opened the Email on the device |
|
int |
ID of the device |
|
int |
Primary key |
|
int |
ID of the IP address |
|
int |
ID of the Email stat record |
email_stat_replies
Email reply tracking.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic received the reply |
|
int |
Primary key |
|
string |
Email message ID from the reply |
|
int |
ID of the Email stat record |
Form statistics
Table |
Description |
|---|---|
|
Form submission records |
form_submissions
Form submission records.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when the Contact submitted the Form |
|
int |
ID of the Form |
|
int |
Primary key |
|
int |
ID of the IP address |
|
int |
ID of the Contact who submitted the Form |
|
int |
ID of the Landing Page containing the Form |
|
string |
Referring URL |
|
string |
Tracking identifier |
Page statistics
Table |
Description |
|---|---|
|
Web page visit tracking |
|
Redirect URL hit tracking |
|
Video viewing analytics |
|
Cross-Channel URL tracking |
page_hits
Web page visit tracking.
Column |
Type |
Description |
|---|---|---|
|
string |
Browser language preferences |
|
string |
City from geolocation |
|
string |
HTTP response code |
|
string |
Country from geolocation |
|
datetime |
Date and time of the page visit |
|
datetime |
Date and time when the visitor left the page |
|
int |
ID of the device |
|
int |
ID of the Email that contained the page link |
|
int |
Primary key |
|
int |
ID of the IP address |
|
string |
Internet service provider |
|
int |
ID of the Contact |
|
string |
Organization from IP lookup |
|
int |
ID of the Landing Page |
|
string |
Language of the page |
|
string |
Query string from the URL |
|
int |
ID of the redirect if applicable |
|
string |
Referring URL |
|
string |
Region or state from geolocation |
|
string |
Remote host name |
|
string |
Source of the page hit |
|
int |
ID of the source item |
|
string |
Tracking identifier |
|
string |
Full URL visited |
|
string |
Title of the visited page |
|
string |
User agent string |
page_redirects
Redirect URL hit tracking.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when a User checked out the redirect for editing |
|
int |
ID of the User who checked out the redirect |
|
string |
Name of the User who checked out the redirect |
|
int |
ID of the User who created the redirect |
|
string |
Name of the User who created the redirect |
|
datetime |
Date and time when a User created the redirect |
|
datetime |
Date and time when a User last modified the redirect |
|
int |
Total number of hits |
|
int |
Primary key |
|
boolean |
Published status - |
|
int |
ID of the User who last modified the redirect |
|
string |
Name of the User who last modified the redirect |
|
string |
Unique redirect identifier |
|
int |
Number of unique hits |
|
string |
Target URL for the redirect |
video_hits
Video viewing analytics.
Column |
Type |
Description |
|---|---|---|
|
string |
Browser language preferences |
|
string |
Communication Channel |
|
int |
ID of the Channel item |
|
string |
City from geolocation |
|
string |
HTTP response code |
|
string |
Country from geolocation |
|
datetime |
Date and time when the Contact accessed the video |
|
datetime |
Date and time when the viewer left |
|
int |
Total duration of the video in seconds |
|
string |
Global unique identifier for the video |
|
int |
Primary key |
|
int |
ID of the IP address |
|
string |
Internet service provider |
|
int |
ID of the Contact |
|
string |
Organization from IP lookup |
|
string |
Language of the page containing the video |
|
string |
Query string from the URL |
|
string |
Referring URL |
|
string |
Region or state from geolocation |
|
string |
Remote host name |
|
int |
Time spent watching the video in seconds |
|
string |
URL of the video |
|
string |
User agent string |
channel_url_trackables
Cross-Channel URL tracking.
Column |
Type |
Description |
|---|---|---|
|
string |
Communication Channel |
|
int |
ID of the Channel item |
|
int |
Total number of hits |
|
int |
ID of the redirect |
|
int |
Number of unique hits |
Point statistics
Table |
Description |
|---|---|
|
Execution log for Point Actions |
|
Execution log for Point Triggers events |
point_lead_action_log
Execution log for Point Actions.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic executed the Point Action |
|
int |
ID of the IP address |
|
int |
ID of the Contact |
|
int |
ID of the Point Action |
point_lead_event_log
Execution log for Point Triggers events.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic executed the Point Trigger Event |
|
int |
ID of the Point Trigger Event |
|
int |
ID of the IP address |
|
int |
ID of the Contact |
Stage statistics
Table |
Description |
|---|---|
|
Stage assignment log |
stage_lead_action_log
Stage assignment log.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic assigned the Stage |
|
int |
ID of the IP address |
|
int |
ID of the Contact |
|
int |
ID of the Stage |
Dynamic Content statistics
Table |
Description |
|---|---|
|
Dynamic Content display statistics |
|
Contact-level Dynamic Content interactions |
dynamic_content_stats
Dynamic Content display statistics.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic first sent the Dynamic Content |
|
int |
ID of the Dynamic Content item |
|
int |
Primary key |
|
datetime |
Date and time when Mautic last sent the Dynamic Content |
|
int |
ID of the Contact |
|
int |
Number of times Mautic sent the Dynamic Content |
|
string |
Details about Dynamic Content sends in JSON format |
|
string |
Source of the Dynamic Content display |
|
int |
ID of the source item |
|
string |
Token values used in JSON format |
dynamic_content_lead_data
Contact-level Dynamic Content interactions.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic recorded the interaction |
|
int |
ID of the Dynamic Content item |
|
int |
Primary key |
|
int |
ID of the Contact |
|
string |
Slot name where Mautic displayed the Dynamic Content |
Notification statistics
Table |
Description |
|---|---|
|
Push Notification delivery and engagement |
push_notification_stats
Push Notification delivery and engagement.
Column |
Type |
Description |
|---|---|---|
|
int |
Number of times the Contact clicked the notification |
|
string |
Details about clicks in JSON format |
|
datetime |
Date and time when the Contact first clicked the notification |
|
datetime |
Date and time when the Contact read the notification |
|
datetime |
Date and time when Mautic sent the notification |
|
int |
Primary key |
|
int |
ID of the IP address |
|
boolean |
Click status - |
|
datetime |
Date and time when the Contact last clicked the notification |
|
int |
ID of the Contact |
|
int |
ID of the Segment that received the notification |
|
int |
ID of the Push Notification |
|
int |
Number of delivery retry attempts |
|
string |
Source of the notification send |
|
int |
ID of the source item |
|
string |
Token values used in JSON format |
|
string |
Unique hash for tracking this notification send |
SMS statistics
Table |
Description |
|---|---|
|
SMS delivery statistics |
sms_message_stats
SMS delivery statistics.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic sent the SMS |
|
int |
Primary key |
|
int |
ID of the IP address |
|
int |
ID of the Contact |
|
int |
ID of the Segment that received the SMS |
|
int |
ID of the SMS message |
|
string |
Source of the SMS send |
|
int |
ID of the source item |
|
string |
Token values used in JSON format |
|
string |
Unique hash for tracking this SMS send |
System statistics
Table |
Description |
|---|---|
|
System-wide audit trail of User actions |
|
IP address registry with geolocation data |
|
Webhook execution logs |
audit_log
System-wide audit trail of User actions.
Column |
Type |
Description |
|---|---|---|
|
string |
Action that the system performed |
|
string |
Mautic bundle that triggered the action |
|
datetime |
Date and time of the action |
|
string |
Additional details about the action in JSON format |
|
int |
Primary key |
|
string |
IP address of the User who performed the action |
|
string |
Object type that the User action changed |
|
int |
ID of the affected object |
|
int |
ID of the User who performed the action |
|
string |
Name of the User who performed the action |
ip_addresses
IP address registry with geolocation data.
Column |
Type |
Description |
|---|---|---|
|
int |
Primary key |
|
string |
The IP address |
|
string |
Geolocation and other details in JSON format |
webhook_logs
Webhook execution logs.
Column |
Type |
Description |
|---|---|---|
|
datetime |
Date and time when Mautic executed the webhook |
|
int |
Primary key |
|
string |
Notes about the webhook execution |
|
float |
Execution time in seconds |
|
int |
HTTP response status code |
|
int |
ID of the Webhook |