Analytics
Integration Provider | Profile | Note | Page Analytics | Weekly Page Analytics | Page Parameters | Account Analytics | User | Other |
---|---|---|---|---|---|---|---|---|
Fullstory | ✅ | |||||||
Google Analytics | ✅ | ✅ | ||||||
Mixpanel | ✅ | ✅ | ✅ | |||||
Pendo | ✅ | ✅ | Page Accounts |
Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!
Profile: analytics-profile
analytics-profile
A profile is a user profile with demographic information of someone interacting with a website.
{
"first_name": {
"title": "First Name",
"type": "string",
"description": "The first name or given name of the profile."
},
"last_name": {
"title": "Last Name",
"type": "string",
"description": "The last name or family name of the profile."
}
}
{
"first_name": "Bob",
"last_name": "Smith"
}
Note: analytics-note
analytics-note
A note is an annotation on a certain data point.
{
"description": {
"title": "Description",
"type": "string",
"description": "The description of the note",
},
"date": {
"title": "Date",
"type": "string",
"format": "date-time",
"description": "The date of the note."
}
}
{
"description": "New product rollout",
"date": "2000-01-01 00:00:00"
}
Weekly Page Analytics: analytics-weekly_page_analytics
analytics-weekly_page_analytics
Weekly page analytics contain weekly information for a specific page.
{
"path": {
"title": "Path",
"type": "string",
"description": "The path URL of the page."
},
"page_views": {
"title": "Page Views",
"type": "number",
"description": "The number of page views for the page.",
},
"engaged_sessions": {
"title": "Engaged Sessions",
"type": "number",
"description": "The number of engaged sessions for the page."
},
"active_users": {
"title": "Active Users",
"type": "number",
"description": "The number of active users for the page."
},
"average_duration": {
"title": "Average duration",
"type": "number",
"description": "The average session duration for the page."
}
}
{
"path": "/integrations",
"page_views": 106,
"engaged_sessions": 18,
"active_users": 2,
"average_duration": 25
}
Page Analytics: analytics-page_analytics
analytics-page_analytics
Page analytics contain information for a specific page.
{
"path": {
"title": "Path",
"type": "string",
"description": "The path URL of the page."
},
"page_views": {
"title": "Page Views",
"type": "number",
"description": "The number of page views for the page.",
},
"engaged_sessions": {
"title": "Engaged Sessions",
"type": "number",
"description": "The number of engaged sessions for the page."
},
"active_users": {
"title": "Active Users",
"type": "number",
"description": "The number of active users for the page."
},
"average_duration": {
"title": "Average duration",
"type": "number",
"description": "The average session duration for the page."
}
}
{
"path": "/integrations",
"page_views": 106,
"engaged_sessions": 18,
"active_users": 2,
"average_duration": 25
}
Page Parameters: analytics-page_parameters
analytics-page_parameters
Page parameters are details about a user.
{
"value": {
"title": "Value",
"type": "string",
"description": "The value of the page parameter."
},
"page_views": {
"title": "Page Views",
"type": "number",
"description": "The number of page views for the page parameter."
}
}
{
"value": "my_parameter",
"page_views": 106
}
Account Analytics: analytics-account_analytics
analytics-account_analytics
Account analytics contain information for a specific account.
{
"name": {
"title": "Name",
"type": "string",
"description": "The name of the account."
},
"page_views": {
"title": "Page Views",
"type": "number",
"description": "The number of page views for the account."
}
}
{
"name": "Endgrate",
"page_views": 106
}
User: analytics-user
analytics-user
{
"first_name": {
"title": "First Name",
"type": "string"
},
"last_name": {
"title": "Last Name",
"type": "string"
},
"display_name": {
"title": "Display Name",
"type": "string"
},
"email": {
"title": "Email",
"type": "string",
"format": "email",
},
}
{
"first_name": "Bob",
"last_name":"Smith",
"display_name": "bsmith",
"email": "[email protected]"
}
Updated about 1 month ago