# BigQuery Setup
Source: https://support.detrics.io/bigquery/bigquery-setup
Create a destination and connect Detrics to your BigQuery project
**Last updated:** May 18, 2026
A **destination** is your BigQuery connection, it tells Detrics which GCP project and dataset to write data to. You set it up once, then create as many transfers as you need pointing to it.
Detrics offers two setup modes, chosen on the first screen of destination creation. **This guide covers Standard Setup**, it grants Detrics the **BigQuery User** role at the project level and is the simplest path for most teams. Security-critical organizations and shared GCP projects can instead use **[Least-Privilege Access](/bigquery/least-privilege-access)**, which scopes Detrics to a single dataset and prevents it from seeing anything else in your project, see that guide for its extra steps. The setup mode **can't be changed** after the destination is created.
## Prerequisites
Before creating a destination, you need:
* A Google Cloud Platform (GCP) account
* A GCP project with the **BigQuery API** enabled
* Permission to manage IAM roles in the project (to grant Detrics access)
If you don't have a GCP project yet, create one at [console.cloud.google.com](https://console.cloud.google.com). BigQuery is automatically available in every GCP project, just make sure the BigQuery API is enabled in **APIs & Services**.
## Creating a Destination
1. In the Detrics web app, go to [**Data Warehouse → Destinations**](https://app.detrics.io/data-warehouse/destinations)
2. Click [**New Destination**](https://app.detrics.io/data-warehouse/destinations/new)
3. Fill in the details:
### Destination Name
A label for your reference (e.g., "Production Warehouse", "Client Analytics", "Dev/Testing"). This is only visible in Detrics, not in BigQuery.
### GCP Project ID
The project ID from your Google Cloud Console. You can find this on the [GCP Dashboard](https://console.cloud.google.com/home/dashboard) or in the project selector dropdown. It looks like `my-company-analytics` or `project-id-123456`.
Use the **Project ID**, not the Project Name or Project Number. The Project ID is the lowercase identifier, usually visible under the project name in the GCP console.
### Dataset Name
The BigQuery dataset where Detrics will create tables. Use lowercase letters, numbers, and underscores (e.g., `marketing_data`, `warehouse_prod`).
If the dataset doesn't exist, Detrics will create it automatically. If it already exists, Detrics will add tables to it, existing tables are not affected.
### Data Location
The geographic region where your data is physically stored. This is permanent and cannot be changed after the dataset is created.
| Location | Type | Description |
| ------------------------------------- | ------------- | ------------------------------------------- |
| `US` | Multi-region | Data stored across multiple US data centers |
| `EU` | Multi-region | Data stored across multiple EU data centers |
| `us-east1`, `us-central1`, etc. | Single region | Data stored in a specific US region |
| `europe-west1`, `europe-west2`, etc. | Single region | Data stored in a specific EU region |
| `asia-east1`, `asia-southeast1`, etc. | Single region | Data stored in a specific Asia region |
For most users, **US** or **EU** multi-region is the best choice. Multi-region gives you higher availability and doesn't restrict which regions can query the data. Choose a specific region only if you have data residency requirements.
### Timezone
The timezone used by all transfers on this destination. The timezone is used for:
* Interpreting schedule times (e.g., "6:00 AM" in which timezone)
* Date boundary calculations
## Granting Access to Detrics
After creating the destination, Detrics displays a **service account email** that needs access to your GCP project. This service account is what Detrics uses to create datasets, tables, and load data.
### Required IAM Roles
Grant the Detrics service account these two roles:
| Role | Purpose |
| ----------------- | ------------------------------------------------------------------------------ |
| **BigQuery User** | Create datasets, create tables, insert data, run queries, and manage load jobs |
### How to Grant Access
1. Go to [Google Cloud Console → IAM & Admin → IAM](https://console.cloud.google.com/iam-admin/iam)
2. Make sure you've selected the correct project in the top dropdown
3. Click **Grant Access**
4. In the **New principals** field, paste the Detrics service account email shown on your destination page
5. In the **Select a role** dropdown, search for and select **BigQuery User**
6. Click **Save**
For security-conscious organizations or shared GCP projects, see [Least-Privilege Access](/bigquery/least-privilege-access) for a setup that scopes Detrics to a single dataset and prevents it from seeing any other data in your project.
### Sending Instructions to a Teammate
If you don't have GCP admin access, click **Send Instructions** on the destination page. This generates an email with:
* The exact service account email to add
* Step-by-step instructions for granting access
* The specific roles needed
You can send this to your GCP administrator or DevOps team.
## Testing the Connection
After granting access, test the connection:
1. Go to your destination's detail page
2. Click **Test Connection**
3. Detrics runs a series of checks:
* **Can access the project**: Verifies the service account has basic access
* **Can create a dataset**: Checks dataset creation permissions (or verifies the existing dataset)
* **Can create tables**: Verifies table creation within the dataset
* **Can insert data**: Confirms data loading works
* **Can query data**: Validates read access
If any check fails, you'll see a specific error message. The most common issue is missing IAM roles, see [Troubleshooting](/bigquery/troubleshooting) for solutions.
Once the test passes, your destination is ready. The status badge changes to **Connected**.
## Managing Destinations
### Editing a Destination
You can update the destination's name and timezone at any time. The GCP project ID, dataset name, and data location cannot be changed after creation (these are BigQuery constraints).
### Multiple Destinations
You can create multiple destinations for different purposes:
* **Production vs. staging**: Test changes in a staging dataset before pointing transfers at production
* **Regional separation**: Keep EU client data in an EU dataset and US client data in a US dataset
* **Team separation**: Different teams or departments with their own datasets
### Sharing a Destination
You can share a destination with other members of your Detrics workspace. Shared users can create transfers using the destination but cannot modify the destination settings. Go to the destination detail page and click **Share** to manage access.
### Deleting a Destination
Deleting a destination in Detrics does **not** delete the BigQuery dataset or any data. It only removes the connection from Detrics. Any transfers using the destination will stop syncing.
# Chunking
Source: https://support.detrics.io/bigquery/chunking
How Detrics splits large syncs into smaller pieces to avoid timeouts and preserve progress
**Last updated:** May 14, 2026
When a sync would be too large to fetch in a single API call, many accounts, long date ranges, or detailed entity levels like individual ads, Detrics automatically splits it into smaller pieces called **chunks**. Each chunk fetches a subset of the data, persists it to BigQuery as soon as it finishes, and then the next chunk starts.
This is purely an execution detail. Your BigQuery tables end up with exactly the same data either way; chunking just changes how Detrics gets there.
## Why Chunking Exists
Marketing platforms impose limits on how much data a single API request can return, and even when they don't, very large requests are slow and fragile. Without chunking, a single timeout or transient error would lose the entire sync's progress.
Chunking solves three problems at once:
* **Timeouts**: Each chunk runs in its own request, well under the platform's time limits
* **Memory**: Detrics never holds an entire historical backfill in memory at once
* **Recovery**: If a sync is interrupted, completed chunks are preserved; only the remaining chunks need to be retried on the next run
## How Chunks Are Split
Chunking happens along two axes:
* **Time range**: Long date ranges are split into segments (typically by calendar month)
* **Account batches**: Many accounts are processed in smaller groups
The exact chunk size depends on the platform and the **entity level** of the table. Denser data needs smaller chunks:
| Example | Chunk Size |
| -------------------------------- | ----------------------------------- |
| Meta Ads, ad-level metrics | \~1 month × 5 accounts per chunk |
| Meta Ads, campaign-level metrics | \~12 months × 25 accounts per chunk |
| Google Ads, keyword-level | Smaller chunks (high cardinality) |
| Google Ads, account summary | Larger chunks (low cardinality) |
If a table's data fits comfortably in a single request, for instance, a short date range with few accounts, **no chunking is performed**, and the run executes as a single fetch. This is normal and expected for small or recently-created tables.
## Chunk Order
Chunks are executed in **recent-first** order: the most recent time windows are fetched before the older ones. This means fresh data lands in BigQuery first, so even if a long initial backfill is paused or interrupted, you still have usable recent data to query.
## What You See in the UI
In the **Run History** of a transfer, each table row shows `X/Y chunks` when chunking was used (e.g., `4/4 chunks` means all 4 chunks completed successfully, `12/13 chunks` means one chunk failed or is still retrying).
If you don't see a chunk count, the table was fetched in a single request, no chunking was needed for that run.
## Chunking and Resyncs
When you trigger a manual resync or when an adaptive retry runs, Detrics replays only the chunks that didn't succeed in the original run. Successful chunks are not refetched, which keeps resyncs fast and minimizes API quota usage. See [Resync and Recovery](/bigquery/resync-and-recovery) for details.
# Column Naming
Source: https://support.detrics.io/bigquery/column-naming
How Detrics normalizes column names to snake_case across all platforms
**Last updated:** March 18, 2026
## The Problem
Every marketing platform uses its own naming convention for fields:
```
Google Ads: campaign.name, ad_group.name, metrics.clicks
Meta Ads: campaign_name, adset_name, clicks
GA4: sessionSourceMedium, totalUsers
Pinterest: CAMPAIGN_NAME, TOTAL_IMPRESSION
Shopify: orderCount, grossSales
```
Writing SQL across platforms means constantly remembering which convention each platform uses, and dealing with dots, camelCase, and inconsistent capitalization.
## The Solution
Detrics normalizes all column names to **snake\_case** before loading data into BigQuery. This means every platform's fields follow the same convention, and you can write clean cross-platform SQL without worrying about naming differences.
## Normalization Rules
Detrics applies these rules in order:
| Rule | Before | After |
| ------------------------------------- | ----------------- | ----------------- |
| Dots become underscores | `campaign.name` | `campaign_name` |
| camelCase splits | `campaignName` | `campaign_name` |
| ALL\_CAPS lowercased | `CAMPAIGN_NAME` | `campaign_name` |
| Acronyms lowered | `CTR` | `ctr` |
| Letter-digit boundaries | `videoViewsP25` | `video_views_p25` |
| Consecutive underscores collapsed | `campaign__name` | `campaign_name` |
| Leading/trailing underscores stripped | `_campaign_name_` | `campaign_name` |
| Digit-leading names prefixed | `7day_click` | `_7day_click` |
## Examples
### Before and After
| Platform | Original Field | BigQuery Column |
| ---------- | -------------------------------------- | -------------------------------------- |
| Google Ads | `campaign.name` | `campaign_name` |
| Google Ads | `metrics.cost_micros` | `metrics_cost_micros` |
| Meta Ads | `campaign_name` | `campaign_name` |
| GA4 | `sessionSourceMedium` | `session_source_medium` |
| GA4 | `totalUsers` | `total_users` |
| Pinterest | `CAMPAIGN_NAME` | `campaign_name` |
| Pinterest | `TOTAL_IMPRESSION` | `total_impression` |
| Shopify | `grossSales` | `gross_sales` |
| Shopify | `orderCount` | `order_count` |
| TikTok | `campaign_name` | `campaign_name` |
| Meta Ads | `offsite_conversion.fb_pixel_purchase` | `offsite_conversion_fb_pixel_purchase` |
### Cross-Platform SQL
With normalized column names, cross-platform queries become straightforward:
```sql theme={null}
-- Compare spend across Meta Ads and Google Ads
SELECT
'Meta Ads' as platform,
campaign_name,
SUM(spend) as total_spend
FROM `project.dataset.meta_ads_campaigns`
WHERE date >= '2026-03-01'
GROUP BY campaign_name
UNION ALL
SELECT
'Google Ads' as platform,
campaign_name,
SUM(spend) as total_spend
FROM `project.dataset.google_ads_campaigns`
WHERE date >= '2026-03-01'
GROUP BY campaign_name
ORDER BY total_spend DESC
```
## System Columns
System columns added by Detrics always use the `_detrics_` prefix and are already in snake\_case:
* `_detrics_account_id`
* `_detrics_row_id`
* `_detrics_sync_id`
* `_detrics_synced_at`
These are never affected by normalization rules and are consistent across all tables.
## Type Mapping
In addition to name normalization, Detrics maps platform data types to BigQuery-native types:
| Detrics Type | BigQuery Type |
| -------------- | ------------- |
| string | STRING |
| float, float64 | FLOAT64 |
| integer, int64 | INT64 |
| date | DATE |
| datetime | DATETIME |
| timestamp | TIMESTAMP |
| boolean | BOOL |
| percent | FLOAT64 |
| currency | FLOAT64 |
| number | FLOAT64 |
# Connect to Claude
Source: https://support.detrics.io/bigquery/connect-to-claude
Connect your Detrics BigQuery warehouse to Claude and ask questions about all your marketing data in plain language
**Last updated:** August 10, 2026
Once your marketing data lives in BigQuery, you can connect it to **Claude** and ask questions about it in plain language. No SQL, no exports. Claude reads the real rows in your warehouse and answers across every platform, account, and country at once.
It is easy to set up, and you only do it once.
## How to connect
In your GCP project (with the BigQuery API enabled), go to **Google Auth Platform → Clients → Create client** and choose **Web application**.
* Authorized JavaScript origins: `https://claude.ai`
* Authorized redirect URI: `https://claude.ai/api/mcp/auth_callback`
Copy the **Client ID** and **Client Secret**.
Open Claude's connector directory, select **Google Cloud BigQuery**, and paste the Client ID and Client Secret.
Sign in with a Google account that has access to your BigQuery project and approve. Claude is now connected to your warehouse and ready to answer.
That's the whole setup. From here, just ask.
## What you can do
* Ask questions in plain language across all your platforms, accounts, and countries.
* Let Claude write and run the SQL for you, then explain the result.
* Walk through multi-step analysis, where each answer builds on the last.
* Draft dashboards, reports, and summaries straight from live data.
* Investigate trends, anomalies, and "why did this change" questions in one conversation.
## Manage your warehouse from Claude
Beyond querying, Claude can now build and run your warehouse for you through the Detrics MCP server. Create destinations, build table groups, schedule and run transfers, and query your data, all in natural language.
* **Create destinations.** Set up a BigQuery destination with guided GCP setup, connection tests, and sharing.
* **Build table groups.** Create table groups and tables from pre-built presets, with safe schema updates.
* **Schedule and run transfers.** Create, pause, resume, and trigger syncs, with per-table sync settings.
Full reference of the MCP tools that let Claude manage your BigQuery warehouse.
## Why this matters
### The problem with scattered data
When your numbers live across dozens of spreadsheets and platform dashboards, a few things break:
1. **No single source of truth.** The same metric shows different values depending on which file you open.
2. **Misaligned teams.** Marketing, BI, and finance each work from their own copy and reach different conclusions.
3. **Incomplete reports.** Pulling everything together by hand is slow, so reports end up partial and you lose the big picture.
4. **Slow decisions.** By the time the data is gathered and cleaned, the moment to act has passed.
5. **Unreliable AI answers.** An AI with no grounded data guesses and hallucinates, which leads to bad calls dressed up as confident ones.
### The solution: one centralized warehouse
Detrics syncs every platform and account into a single BigQuery warehouse. The data arrives normalized, deduplicated, and refreshed on the schedule you set. That gives every team and every tool one consistent, current source to work from.
### Why connecting it to Claude is powerful
A centralized warehouse is the foundation. Claude on top of it is the leverage:
* **Grounded answers.** Claude reads your actual rows, so its reasoning is anchored to real numbers instead of guesses.
* **Chain of reasoning.** It can break a hard question into steps, query each one, and combine the results into an answer you can trust.
* **Dashboards on demand.** Describe the view you want and Claude builds the query and the breakdown for you.
* **Real-time decisions.** Ask a question and get the answer now, against data that is already up to date.
### Why Detrics
The hard part is not Claude. It is getting clean, unified, current data into one place. Detrics handles the platform authentication, the API maintenance, the column normalization, the deduplication, and the scheduled refresh. Claude always queries data that is complete and trustworthy, so the answers are too.
New to the Data Warehouse? Start here to get your data into BigQuery, then come back to connect Claude.
# Creating Transfers
Source: https://support.detrics.io/bigquery/creating-transfers
Connect a table group to a destination with a schedule and start syncing data
**Last updated:** March 18, 2026
A **transfer** is the core of the Detrics Data Warehouse pipeline. It binds together:
* A **data source** (your platform connection and accounts)
* A **table group** (what data to fetch)
* A **destination** (where to put it)
* A **schedule** (when to sync)
## Creating a Transfer
1. Go to [**Data Warehouse → Transfers**](https://app.detrics.io/data-warehouse/transfers)
2. Click [**New Transfer**](https://app.detrics.io/data-warehouse/transfers/new)
3. Follow the steps below
### Step 1: Select Data Source
Choose the platform connection to use. This is the same OAuth connection you set up in Detrics for Google Sheets or Looker Studio, no need to reconnect.
### Step 2: Select Accounts
Choose which platform accounts to sync:
* **All accounts**: Syncs every account available under the connection. If new accounts are added to the connection later, they're automatically included
* **Selected accounts**: Pick specific accounts from the list
For platforms with a single account per connection (Shopify, Stripe, WooCommerce, Klaviyo, TiendaNube, HubSpot, TikTok Organic), account selection is skipped, there's only one account to sync.
**All accounts** is recommended for most use cases. Each row in BigQuery includes `_detrics_account_id`, so you can always filter to specific accounts in your SQL queries. This way, new accounts are automatically picked up without modifying the transfer.
### Step 3: Select Table Group
Choose an existing table group or create a new one. The table group must match the platform you selected in Step 1 (e.g., a Meta Ads table group for a Meta Ads connection).
### Step 4: Choose a Sync Strategy
First, choose a **sync strategy** that sets the initial sync mode for all tables in the transfer:
| Strategy | What It Does | Best For |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
| **Replicate Source** (recommended) | Applies smart defaults based on each table's configuration, time-series tables with daily aggregation get **Incremental**, snapshot and non-daily tables get **Full Refresh** | Most use cases. Detrics picks the right mode per table automatically |
| **Full Refresh All** | Sets every table to **Full Refresh** mode | When you want a clean, complete replacement of all data on every sync |
| **Append Full Snapshots** | Sets every table to **Full Append** mode | When you want to track how all data changes over time by keeping every snapshot |
**Replicate Source** is recommended for most transfers. It uses platform-specific logic to assign the optimal sync mode to each table, for example, daily ad performance tables get Incremental with a platform-appropriate refresh window, while campaign settings tables get Full Refresh.
#### Customize per-table sync modes
After selecting a strategy, you can override the sync mode for individual tables. The three sync modes are:
* **Incremental**: Best for daily time-series data (spend, impressions, clicks). Deduplicates by date using a refresh window
* **Full Refresh**: Best for snapshot/reference data (campaign settings, product catalogs). Replaces the table on each sync
* **Full Append**: Best for tracking changes over time (metric evolution, audit trails). Appends without removing
For tables assigned Incremental mode, you'll also configure the **refresh window** (how many days to re-fetch on each sync).
See [Sync Modes](/bigquery/sync-modes) for guidance on choosing the right mode.
### Step 5: Select Destination
Choose which BigQuery destination to write data to. The destination must have a **Connected** status (pass the connection test).
### Step 6: Configure Schedule
Set how often the transfer runs:
| Setting | Options |
| ---------------- | ------------------------------------------------- |
| **Frequency** | Every 1h, 2h, 3h, 6h, 12h, Daily, Weekly, Monthly |
| **Hour of day** | 0-23 (for daily, weekly, monthly frequencies) |
| **Day of week** | Sun-Sat (for weekly frequency) |
| **Day of month** | 1-31 (for monthly frequency) |
| **Timezone** | Set on the destination |
See [Scheduling & Refresh Windows](/bigquery/scheduling-and-refresh-windows) for guidance on choosing a frequency.
### Step 7: Additional Settings
* **Transfer name**: A descriptive name (e.g., "Meta Ads - Daily Campaign Metrics")
* **Table name prefix**: Optional prefix added to all BigQuery table names in this transfer (e.g., `meta_ads_` makes tables like `meta_ads_campaign_performance`). If not set, a default prefix based on the platform is used
### Step 8: Create
Click **Create Transfer**. Detrics immediately starts the **initial sync**, which fetches historical data based on each table's configured historical sync range.
## After Creation
### Initial Sync
The first sync fetches historical data. Depending on the number of tables, accounts, and historical range, this can take from a few minutes to over an hour for very large syncs.
You can monitor progress in real time on the transfer detail page:
* Which table is currently syncing
* How many rows have been loaded
* Progress through chunks (for large syncs)
### Subsequent Syncs
After the initial sync, the transfer runs on schedule:
* **Incremental tables** fetch only the refresh window (e.g., last 3 days)
* **Full Refresh tables** re-fetch the full dataset
* **Full Append tables** append the full dataset
## Transfer Status
| Status | Meaning |
| ----------- | ---------------------------------------------------------------------------------- |
| **Active** | Transfer is running on schedule |
| **Paused** | Transfer is paused, no syncs will run until resumed |
| **Pausing** | A pause was requested but a sync is currently running, will pause after completion |
| **Error** | Transfer encountered a system error, check the detail page for specifics |
### Pausing and Resuming
* **Pause**: Stops scheduled syncs. Data in BigQuery is preserved as-is
* **Resume**: Restarts the schedule. The next sync runs at the next scheduled time (or immediately if the scheduled time has passed)
### Auto-Pause
If a transfer fails **3 consecutive times**, it automatically pauses to prevent unnecessary API calls and error noise. You'll receive an alert (if configured). Check the error details, fix the issue (e.g., re-authenticate the connection, fix BigQuery permissions), then resume.
## Organizing with Folders
You can organize transfers into folders:
* Create folders from the transfer list page
* Drag transfers between folders
* Nest folders for hierarchical organization
This is purely for organization in the Detrics UI, folders don't affect how transfers run or where data lands in BigQuery.
## Sharing Transfers
Share a transfer with other workspace members:
* **View only**: Can see the transfer status and run history
* **Edit**: Can modify settings, trigger syncs, and pause/resume
Go to the transfer detail page and click **Share** to manage access.
## Alerts
Configure email alerts per transfer:
| Alert Type | When It Fires |
| -------------------- | ------------------------------------------------------------------ |
| **On failure** | When a sync fails (any table) |
| **On success** | When a sync completes successfully |
| **On schema change** | When BigQuery table schema is modified (new columns added/removed) |
Add one or more email addresses to receive alerts. This is useful for monitoring transfers you don't check daily.
# Custom Fields
Source: https://support.detrics.io/bigquery/custom-fields
Discover and sync platform-specific custom dimensions, conversions, and properties
**Last updated:** March 18, 2026
## What Are Custom Fields?
Most platforms offer a standard set of metrics and dimensions that every account has access to (e.g., `spend`, `impressions`, `campaign_name`). But some platforms also support **custom fields**, user-defined metrics or dimensions specific to individual accounts.
Examples of custom fields:
* **Google Analytics 4**: Custom dimensions and custom metrics you've defined in your GA4 property
* **Meta Ads**: Custom conversions, custom events, and offline event sets
* **Klaviyo**: Custom conversion metrics tied to your flows and campaigns
* **HubSpot**: Custom properties defined on your contacts, companies, deals, and other CRM objects
Detrics can discover these fields per account and sync them alongside standard fields in your BigQuery tables.
## How Custom Field Discovery Works
1. When editing a table, click **Load Custom Fields** in the field picker
2. Select an account from the dropdown, custom fields are discovered per account since each account may have different custom fields
3. Detrics queries the platform API to discover available custom fields
4. Custom fields appear in the field picker alongside standard fields, marked with a special badge
5. Select the custom fields you want to include in your table
The account you select for discovery is only used to find available fields, it doesn't affect which accounts the transfer syncs. When the transfer runs, Detrics syncs all selected accounts (or all accounts, depending on your setting).
## Multi-Account Handling
When a transfer syncs multiple accounts, some accounts may have custom fields that others don't. Detrics handles this gracefully:
* If Account A has custom dimension `user_segment` but Account B doesn't, the column still exists in BigQuery
* Rows from Account A will have values for `user_segment`
* Rows from Account B will have `NULL` for that column
* BigQuery handles sparse columns natively, no performance impact
This means you don't need to worry about field compatibility across accounts. Include whatever custom fields you need, and Detrics will populate them where available.
## Supported Platforms
### Google Analytics 4
GA4 supports custom dimensions and custom metrics that you define in your property settings. These appear in Detrics with their configured parameter name.
Custom dimensions commonly used:
* User-scoped dimensions (e.g., `user_type`, `membership_level`)
* Event-scoped dimensions (e.g., `content_category`, `product_brand`)
Custom metrics commonly used:
* Event count metrics (e.g., `custom_purchase_value`, `video_completions`)
### Meta Ads
Meta Ads supports custom conversions that track specific actions on your website or app. These appear as additional conversion metrics in the field picker.
Examples:
* Custom conversion events mapped to specific pixel events
* Offline conversion sets
### Klaviyo
Klaviyo supports custom conversion metrics tied to your flows and campaigns. These track specific revenue or engagement actions.
## Custom Fields and Column Naming
Custom fields follow the same [column naming rules](/bigquery/column-naming) as standard fields. Field names are normalized to snake\_case in BigQuery. For example, a GA4 custom dimension called `UserSegment` becomes `user_segment` in your BigQuery table.
# FAQ
Source: https://support.detrics.io/bigquery/faq
Frequently asked questions about Detrics Data Warehouse
**Last updated:** March 18, 2026
## General
Currently, Detrics supports **Google BigQuery** as a destination. BigQuery is the most widely used cloud data warehouse for marketing analytics, and Detrics is optimized for deep integration with it.
With the **Standard Setup**, no, when you create a destination and specify a dataset name, Detrics creates the dataset automatically in your GCP project (if it doesn't already exist). You just need to make sure the Detrics service account has the right permissions. With [**Least-Privilege Access**](/bigquery/least-privilege-access), you do pre-create the dataset yourself, since Detrics is not granted project-wide dataset-creation rights.
Every platform supported by Detrics can be synced to BigQuery. See the [Fields Catalog](/fields-catalog) for the full list of platforms and the metrics and dimensions available for each.
Yes. The Data Warehouse uses the same OAuth connections you've set up for Google Sheets or Looker Studio. No need to re-authenticate your platforms.
The Data Warehouse is available on select plans. Check [Pricing & Plans](/pricing) for current details.
## Data & Syncing
You choose the schedule when creating a transfer. Options range from **every hour** to **monthly**. You can also trigger a manual sync at any time.
You can configure the historical sync range per table: 1 month, 3 months, 6 months, 12 months, 24 months, or all time. The available history depends on what the platform API provides, some platforms limit historical data access.
If a sync fails, the transfer shows an error status with details about what went wrong (e.g., expired token, BigQuery permission issue, platform API error). Your existing data in BigQuery is not affected, failed syncs don't delete or corrupt previously loaded data. After 3 consecutive failures, the transfer automatically pauses to prevent unnecessary API calls.
Yes. When creating a transfer, you can choose **All accounts** (syncs every account under that connection) or **Selected accounts** (pick specific ones). Each account's data is tagged with `_detrics_account_id` so you can filter by account in your SQL queries.
It depends on the sync mode:
* **Incremental**: Detrics deletes rows within the refresh window for the synced accounts, then inserts fresh data. This prevents duplicates while preserving data outside the window.
* **Full Refresh**: The entire table is replaced on each sync, so duplicates are impossible.
* **Full Append**: Rows are appended without deduplication. If you re-sync the same date range, you will get duplicate rows. This mode is designed for use cases where you want to track snapshots over time.
Nothing. Your data in BigQuery stays exactly as it is. Pausing a transfer simply stops scheduled syncs. When you resume, the next sync picks up where it left off based on the refresh window.
**No.** Detrics will never modify, delete, or overwrite a table it didn't create. Before writing to any table, Detrics checks for the presence of its four [system columns](/bigquery/system-columns) (`_detrics_account_id`, `_detrics_row_id`, `_detrics_sync_id`, `_detrics_synced_at`). If a table exists but doesn't have these columns, Detrics treats it as a user-created table and **refuses to write to it**, the sync will fail with a clear error message asking you to rename the existing table or change the Detrics table prefix.
This means it's completely safe to use a shared dataset that contains both Detrics-managed tables and your own tables, views, or materialized queries. Detrics will only ever touch tables that have its system columns.
Detrics will detect the conflict and **block the sync** rather than overwrite your data. You'll see a `TABLE_NOT_MANAGED` error explaining that the table exists but wasn't created by Detrics.
To resolve the conflict, you have two options:
* **Rename your existing table** in BigQuery (e.g., add a `_backup` suffix), then re-run the sync
* **Change the table prefix in Detrics**: each transfer has a configurable prefix (defaults to the platform name, e.g., `facebook_ads_`, `ga4_`). Set a custom prefix to avoid the collision
See [Troubleshooting → Table Not Managed by Detrics](/bigquery/troubleshooting#table-not-managed-by-detrics) for more details.
Yes. You can create multiple transfers using the same table group, each pointing to a different destination. This is useful for maintaining separate production and staging datasets.
## BigQuery & Costs
No. BigQuery costs are billed directly by Google through your GCP project. Detrics handles the data pipeline; Google bills you for storage and query compute. For most marketing use cases, BigQuery costs are minimal, often under \$10/month.
**Incremental** is significantly cheaper for ongoing syncs. It only touches a small window of data (e.g., the last 3 days), which means lower query and storage costs compared to Full Refresh (which replaces the entire table each time). For a table with 12 months of history, an incremental sync with a 3-day window processes roughly 0.8% of the data compared to a full refresh.
No. BigQuery does not charge for loading data via the streaming or load APIs. You're only charged for storage and queries you run against the data.
Yes. When creating a destination, you choose the **data location**, either a multi-region (US, EU) or a specific region (e.g., `us-east1`, `europe-west1`). This is permanent for that dataset and cannot be changed after creation.
## Tables & Fields
Yes. You can edit a table at any time to add new metrics/dimensions or remove existing ones. On the next sync, Detrics will migrate the BigQuery table schema, adding new columns and preserving existing data. Removed fields will no longer receive new data but existing values are preserved.
Premade table groups are presets with pre-configured metrics and dimensions for common use cases. They come in three tiers:
* **Light**: Essential metrics only, minimal table count
* **Standard**: Recommended for most use cases, balanced coverage
* **Enhanced**: Comprehensive coverage with detailed breakdowns
You can customize any premade group after creating it.
All column names are normalized to **snake\_case**. This means `campaignName` becomes `campaign_name`, `campaign.name` becomes `campaign_name`, and `CTR` becomes `ctr`. This ensures consistent naming across all platforms so you can write clean SQL without worrying about each platform's conventions. See [Column Naming](/bigquery/column-naming) for the full rules.
Some platforms support user-defined fields that aren't part of the standard catalog. For example, GA4 custom dimensions, Meta Ads custom conversions, or Klaviyo custom metrics. Detrics can discover these fields per account and sync them alongside standard fields. See [Custom Fields](/bigquery/custom-fields) for details.
## Transfers & Scheduling
The new schedule takes effect on the next scheduled run. If you change from daily to hourly, the transfer will start running hourly from the next scheduled time.
Yes. On any active transfer's detail page, click the **Sync Now** button. This triggers an immediate run without affecting the regular schedule.
A resync re-fetches data from the platform, optionally clearing existing data first. Use it when:
* You added new fields to a table and want historical data for those fields
* You suspect data quality issues and want a clean reload
* You changed filters and want to re-fetch with the new criteria
See [Resync & Recovery](/bigquery/resync-and-recovery) for details.
The timezone is set on the destination. All transfers using that destination follow its timezone. Schedules are interpreted in the destination's timezone, so "Daily at 6:00 AM" means 6:00 AM in that timezone, even when DST changes happen. Detrics handles DST transitions automatically.
# Filter Overrides
Source: https://support.detrics.io/bigquery/filter-overrides
Customize table filters per transfer without duplicating table definitions
**Last updated:** March 18, 2026
## What Are Filter Overrides?
Filter overrides let you **reuse the same table group** across multiple transfers with different filtering criteria, without duplicating the table definitions.
### The Problem
Suppose you have a "Campaign Performance" table with metrics like spend, impressions, and conversions. You want three transfers:
* One for **Brand** campaigns (campaign name contains "Brand")
* One for **Performance** campaigns (campaign name contains "Perf")
* One that syncs **all campaigns** (no filter)
Without filter overrides, you'd need to create three nearly identical table groups that differ only in their filters.
### The Solution
With filter overrides, you create **one table group** with no filters (or with default filters), then override the filters at the transfer level:
```
Table Group: "Campaign Performance"
└── Table: campaign_metrics (no filter)
Transfer 1: "Brand Campaigns"
└── Override: campaign_name CONTAINS "Brand"
Transfer 2: "Performance Campaigns"
└── Override: campaign_name CONTAINS "Perf"
Transfer 3: "All Campaigns"
└── No override (uses table's default — no filter)
```
All three transfers use the same table group but sync different subsets of data.
## How It Works
* Filter overrides are set per **table** per **transfer**, you can override filters for some tables in a group while leaving others at their defaults
* An override **replaces** the table's filters entirely (it doesn't merge with existing filters)
* If no override is set, the table's own filters are used
* Overrides do not modify the original table definition, other transfers using the same table group are unaffected
## Setting Up Filter Overrides
1. Go to a transfer's detail page
2. Navigate to the **Tables** tab
3. Click on a table to see its current filter configuration
4. Click **Override Filters** to set transfer-specific filters
5. Define your custom filter criteria using the same operators available in table configuration
The transfer detail page shows which tables are using default filters and which have overrides applied, marked with a distinct badge.
## Use Cases
### Multi-Brand Agency
An agency managing campaigns for multiple brands under one ad account:
* Table group defines the metrics and dimensions
* Each transfer filters by brand name
* Each transfer points to a different destination (one BigQuery dataset per brand)
### Campaign Type Segmentation
A marketing team that wants separate tables for different campaign objectives:
* One transfer for prospecting campaigns
* One transfer for retargeting campaigns
* One transfer for all campaigns (for totals)
### Regional Segmentation
A global team syncing the same metrics but filtered by country or region:
* Transfer for LATAM markets
* Transfer for US market
* Transfer for EU markets
## Removing an Override
To remove an override and revert to the table's default filters, go to the table's override settings and click **Remove Override**. The next sync will use the table's original filter configuration.
# Glossary
Source: https://support.detrics.io/bigquery/glossary
Key terms and definitions for Detrics Data Warehouse
**Last updated:** March 18, 2026
## Core Terms
### Destination
A connection to a BigQuery dataset where your synced data is stored. A destination includes a GCP project ID, dataset name, data location (region), and timezone. You can have multiple destinations for different use cases (e.g., production vs. staging).
### Table Group
A collection of related tables for a single platform. For example, a "Meta Ads - Performance" table group might contain tables for campaign-level metrics, ad-level metrics, and audience breakdowns. Table groups can be created from **premade presets** or built from scratch.
### Table
An individual data definition within a table group. Each table specifies:
* Which **metrics** and **dimensions** to fetch
* The **time aggregation** (daily, weekly, monthly, or total)
* Any **filters** to narrow the data
* The **historical sync range** (how far back to fetch on the first sync)
A table maps directly to one BigQuery table. The **sync mode** for each table is assigned when creating a transfer, see [Transfer](#transfer).
### Transfer
The scheduled pipeline that connects a table group to a destination. A transfer defines:
* Which **data source** (platform connection) to use
* Which **accounts** to sync (all or selected)
* The **sync mode** for each table (incremental, full refresh, or full append)
* The **schedule** (how often to sync)
* The **destination** (where to put the data)
One transfer syncs one platform's data. To sync Meta Ads and Google Ads, you create two transfers.
### Transfer Run
A single execution of a transfer. Each run fetches data, processes it according to the sync mode assigned to each table, and loads it into BigQuery. Runs can be triggered by the schedule, manually, or as part of a resync.
### Sync Mode
How data is written to and maintained in a BigQuery table. Detrics supports three sync modes:
* **Incremental**: Append and deduplicate by date
* **Full Refresh**: Replace the entire table
* **Full Append**: Append without deduplication
See [Sync Modes](/bigquery/sync-modes) for full details.
### Refresh Window
For **Incremental** sync mode only. The number of days Detrics re-fetches and deduplicates on each sync. For example, a 3-day refresh window means each sync fetches the last 3 days and replaces those rows in BigQuery. This handles late-arriving data and attribution adjustments.
### Historical Sync Range
How far back Detrics fetches data on the **first sync** of a transfer. Options range from 1 month to all time. After the initial sync, only the refresh window (incremental) or full dataset (full refresh/append) is fetched on each run.
***
## BigQuery Terms
### Dataset
A BigQuery container that holds tables. When you create a destination, you specify a dataset name. If it doesn't exist, Detrics creates it in your GCP project.
### Data Location
The geographic region where your BigQuery data is physically stored. Options include multi-region locations (US, EU) or specific regions (us-east1, europe-west1, etc.). Once set, a dataset's location cannot be changed.
### Service Account
A Google Cloud identity that Detrics uses to access your BigQuery project. You grant this service account the **BigQuery User** role so Detrics can create datasets, tables, and load data.
***
## Data Terms
### Metrics
Quantitative values that can be summed or averaged. Examples: `spend`, `impressions`, `clicks`, `conversions`, `revenue`, `sessions`.
### Dimensions
Categorical or descriptive values used to group and filter data. Examples: `campaign_name`, `date`, `ad_name`, `country`, `device`, `product_title`.
### Time Aggregation
How data is grouped over time within a table:
* **Daily**: One row per day per dimension combination
* **Weekly**: One row per ISO week
* **Monthly**: One row per calendar month
* **Hourly**: One row per hour (where supported by the platform)
* **Total**: No time breakdown; aggregated across the entire date range
### Filters
Conditions applied to narrow the data fetched from a platform. For example, filtering campaigns where `campaign_name CONTAINS "Brand"` to sync only branded campaigns. Filters can be set at the table level or overridden per transfer.
### Filter Override
A transfer-level setting that replaces a table's default filters with custom filters for that specific transfer. Useful when you want to reuse the same table definition across multiple transfers with different filtering criteria.
### Custom Fields
Platform-specific fields that aren't part of the standard field catalog. Examples include GA4 custom dimensions, Meta Ads custom conversions, and Klaviyo custom metrics. These are discovered per account and synced alongside standard fields.
***
## System Terms
### System Columns
Columns automatically added by Detrics to every BigQuery table:
* `_detrics_account_id`: The platform account ID that owns each row
* `_detrics_row_id`: A content hash for deduplication
* `_detrics_sync_id`: The ID of the transfer run that created the row
* `_detrics_synced_at`: Timestamp of when the row was loaded
See [System Columns](/bigquery/system-columns) for details.
### Sync Log
A metadata table (`_detrics_sync_log`) automatically created in your BigQuery dataset. Records one row per table per transfer run, including status, row count, duration, and error details. Useful for monitoring and auditing.
### Resync
A manual operation that re-fetches data for a transfer. Two options:
* **Resync (retain data)**: Re-fetch the configured date range without deleting existing data outside that range
* **Resync (remove data)**: Delete all existing data for the transfer's accounts, then re-fetch from scratch
### Initial Sync
The first run of a new transfer. Fetches historical data based on each table's configured historical sync range. Subsequent runs use the refresh window (incremental) or re-fetch the full dataset (full refresh/append).
### Chunk
For large syncs, Detrics splits the work into smaller pieces called chunks, by time range, by account batch, or both. Chunking prevents timeouts and allows progress tracking. If a sync is interrupted, completed chunks are preserved.
### Image Persistence
An optional feature that downloads images from temporary platform URLs (e.g., ad creative thumbnails) and stores them in a Google Cloud Storage bucket. This gives you permanent URLs that don't expire, unlike the originals which typically expire within 24 hours.
# How Detrics Syncs Work
Source: https://support.detrics.io/bigquery/how-detrics-syncs-work
Understand the Detrics data pipeline from platform APIs to your BigQuery tables
**Last updated:** March 18, 2026
## The Detrics Approach
Detrics follows an **ETL (Extract, Transform, Load)** model for data warehousing. Unlike tools that dump raw API responses into your warehouse and ask you to clean them up, Detrics gives you full control over what gets extracted and how it's structured before it lands in BigQuery.
You decide:
* **Which metrics and dimensions** to include in each table
* **Which filters** to apply at the source
* **How to aggregate over time** (daily, weekly, monthly, or total)
* **Which sync strategy** to use for each table
This means every table in your warehouse contains exactly the data you asked for, clean, normalized, and ready to query.
## The Sync Pipeline
When a transfer runs, whether on schedule or triggered manually, Detrics executes a five-stage pipeline:
### Stage 1: Configuration Resolution
Detrics loads the transfer's configuration: which tables to sync, which accounts, which filters (including any per-transfer filter overrides), the sync mode assigned to each table, and refresh window settings.
### Stage 2: Data Extraction
For each table in the transfer, Detrics calls the platform's API to fetch the requested metrics and dimensions. The date range depends on the sync mode and whether this is the initial sync or a subsequent run:
**Initial sync** (first run after creating a transfer):
* All sync modes fetch the full **historical sync range** configured on each table (e.g., last 3 months, last 12 months, or all time). This backfills your BigQuery tables with historical data.
**Subsequent syncs:**
* **Incremental**: Fetches only the last N days (the refresh window), deduplicates, and preserves everything outside the window
* **Full Refresh**: Fetches the full configured date range and replaces the table
* **Full Append**: Fetches the full configured date range and appends a new snapshot
For large syncs (many accounts, long date ranges, or detailed entity levels like individual ads), Detrics automatically **chunks** the work, splitting by time range and account batches to prevent timeouts and manage memory.
### Stage 3: Transformation
Before loading into BigQuery, Detrics normalizes the data:
* **Column naming**: All field names are converted to `snake_case` for consistent SQL across platforms. See [Column Naming](/bigquery/column-naming)
* **System columns**: Four columns are added to every row: `_detrics_account_id`, `_detrics_row_id`, `_detrics_sync_id`, and `_detrics_synced_at`. See [System Columns](/bigquery/system-columns)
* **Type mapping**: Platform data types are mapped to BigQuery-native types (STRING, FLOAT64, INT64, DATE, TIMESTAMP, BOOL)
* **Row identity**: A SHA-256 hash is computed from each row's content for deduplication tracking
### Stage 4: Schema Migration
If this is the first sync for a table, Detrics creates the BigQuery table with the appropriate schema. On subsequent syncs, if you've added or removed fields, Detrics migrates the schema, adding new columns and preserving existing data.
### Stage 5: Data Loading
Data is loaded into BigQuery according to the sync mode assigned to each table in the transfer:
| Sync Mode | What Happens |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Incremental** | Delete rows in the refresh window for the synced accounts, then insert fresh data. This is done atomically, if the insert fails, the delete is rolled back |
| **Full Refresh** | Replace the entire table with the new data in one atomic operation |
| **Full Append** | Append new rows to the existing table without modifying or removing anything |
After loading, Detrics records the results in the [sync log](/bigquery/system-columns#sync-log) metadata table and updates the transfer's status.
## Platform Focus
Detrics is built specifically for the platforms used by modern digital marketing teams. This focus allows for deeper integration than general-purpose ETL tools:
### Advertising Platforms
Meta Ads, Google Ads, TikTok Ads, LinkedIn Ads, X Ads, Pinterest Ads, Bing Ads, Mercado Ads, Google DV360, with support for attribution windows, conversion tracking, and ad-level creative data.
### Analytics & SEO
Google Analytics 4 and Google Search Console, with support for custom dimensions and property-level configuration.
### Social Media
Instagram Insights, Facebook Insights, Facebook Public Data, TikTok Organic, organic performance metrics alongside paid data.
### Email Marketing
Klaviyo and Mailchimp, campaign performance, flow analytics, and subscriber metrics.
### CRM
HubSpot, contacts, deals, companies, and other entities with custom properties.
### E-commerce
Shopify, TiendaNube, WooCommerce, Google Merchant Center, orders, products, inventory, and storefront data.
### Payments
Stripe, charges, subscriptions, and payment analytics.
## Chunked Execution
Large syncs are automatically split into smaller chunks to ensure reliability. Chunking happens along two axes:
* **Time range**: Long date ranges are split into monthly segments
* **Account batches**: Many accounts are processed in smaller groups
The chunk strategy varies by platform and entity level. For example, Meta Ads at the ad level uses smaller chunks (1 month × 5 accounts) because ad-level data is denser, while campaign-level data uses larger chunks (12 months × 25 accounts).
Each completed chunk is persisted immediately. If a sync is interrupted (timeout, transient error), completed chunks are preserved, only the remaining chunks need to be retried.
## What Detrics Adds to Your Data
Every table in your warehouse includes four system columns managed by Detrics:
| Column | Description |
| --------------------- | -------------------------------------------------------------------------- |
| `_detrics_account_id` | The platform account ID that owns each row (e.g., your Meta ad account ID) |
| `_detrics_row_id` | A content hash for deduplication tracking |
| `_detrics_sync_id` | The transfer run ID that created the row |
| `_detrics_synced_at` | Timestamp of when the row was loaded into BigQuery |
These columns let you filter by account, track data freshness, and join with the sync log for auditing. See [System Columns](/bigquery/system-columns) for details.
# Image Persistence
Source: https://support.detrics.io/bigquery/image-persistence
Store permanent copies of ad creative images from platforms with expiring URLs
**Last updated:** March 18, 2026
## The Problem with Ephemeral URLs
Some marketing platforms return **temporary URLs** for images and creative assets. Meta Ads, TikTok, and Instagram generate CDN-signed URLs that typically expire within 24 hours. This means:
* Image URLs in your BigQuery data stop working after a day
* If you use these URLs in dashboards or reports, the images break
* Every API call returns a new URL for the same image, even if the content hasn't changed
## How Image Persistence Works
Image Persistence is an optional feature that gives you **permanent URLs** for ad creative images.
When enabled on a destination:
1. After a transfer sync completes, Detrics identifies all image URL fields in the synced data
2. Each image is downloaded from the platform's CDN
3. The image is compressed to an optimized WebP format (approximately 400px wide, \~14KB per image)
4. A content hash is computed, if the same image already exists in your bucket, it's not re-uploaded
5. The image is uploaded to a Google Cloud Storage (GCS) bucket in your project
6. The temporary URL in your BigQuery table is replaced with a permanent `https://storage.googleapis.com/...` URL
### What Gets Processed
Currently, image persistence supports these fields from **Meta Ads**:
* `ad_image_url`: The ad's main creative image
* `ad_image`: Image references embedded in creative data
Support for additional platforms (TikTok, Instagram) is planned.
## Enabling Image Persistence
1. Go to [**Data Warehouse → Destinations**](https://app.detrics.io/data-warehouse/destinations)
2. Open the destination where you want to enable image persistence
3. Click **Enable Image Bucket**
4. Detrics will create a GCS bucket in your project named `detrics-images-{workspace-id}`
5. Grant the Detrics service account **Storage Object Admin** role on the bucket (or project-wide)
The Detrics service account needs the **Storage Object Admin** IAM role to upload images to GCS. This is in addition to the BigQuery roles already granted.
The steps above describe the **Standard Setup**. Under **[Least-Privilege Access](/bigquery/least-privilege-access)** you pre-create the bucket yourself and grant a narrower **Storage Object User** role scoped to that bucket, see that guide for the exact steps.
## Storage Costs
Image persistence is designed to be cost-effective:
* Images are compressed to WebP format (\~14KB per image)
* Content-based deduplication means the same image is stored only once, even if it appears in multiple rows or across accounts
* Typical monthly cost for a large account: under \$1/month for storage
## How It Affects Deduplication
Image URL fields are marked as **ephemeral** in Detrics. This means:
* URL changes don't affect the `_detrics_row_id` hash
* When a platform returns a new temporary URL for the same image, Detrics doesn't count it as a row change
* This prevents unnecessary row updates in Incremental sync mode
This behavior applies regardless of whether Image Persistence is enabled. Image Persistence adds the permanent URL replacement on top of the dedup exclusion.
## Disabling Image Persistence
You can disable Image Persistence on a destination at any time. Existing images in the GCS bucket are preserved, and their URLs in BigQuery continue to work. New syncs will write the platform's ephemeral URLs instead of permanent ones.
# Interactive Setup Demo
Source: https://support.detrics.io/bigquery/interactive-demo
Click through the full BigQuery setup flow at your own pace
**Field Name:** `video.channel_id`
**Type:** dimension |
| Video Duration
| Duration in seconds.
**Field Name:** `video.duration_millis`
**Type:** dimension |
### Keyword
| | |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Keyword ID
| Unique identifier for this keyword.
**Field Name:** `keyword.id`
**Type:** dimension |
| Keyword Text
| The text of the keyword (at most 80 characters and 10 words)
**Field Name:** `keyword.text`
**Type:** dimension |
| Keyword Match Type
| Can be: BROAD, EXACT, PHRASE.
**Field Name:** `keyword.match_type`
**Type:** dimension |
| Keyword Status
| Can be: ENABLED, PAUSED, REMOVED.
**Field Name:** `keyword.status`
**Type:** dimension |
| Keyword Is Negativized
| Important Note: Always choose 'No time Grouping' in the Timeframe to get negativized keywords.
**Field Name:** `keyword.is_negativized`
**Type:** dimension |
| Quality Score
| Real-time Quality Score (1-10) for keywords. Use with keyword dimensions and no time grouping for best results.
**Field Name:** `ad_group_criterion.quality_info.quality_score`
**Type:** dimension |
### Demographics
| | |
| -------------------- | ---------------------------------------------------------------------- |
| Gender
|
**Field Name:** `gender.type`
**Type:** dimension |
| Age Range
|
**Field Name:** `age_range.type`
**Type:** dimension |
| Device
|
**Field Name:** `segments.device`
**Type:** dimension |
### Location
| | |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Country Code
|
**Field Name:** `country.code`
**Type:** dimension |
| Country Name
|
**Field Name:** `country.name`
**Type:** dimension |
| Location Region
| The region/state where the ad was shown or interacted with.
**Field Name:** `location.region`
**Type:** dimension |
| Location State
| The state where the ad was shown or interacted with.
**Field Name:** `location.state`
**Type:** dimension |
| Location Metro
| The metropolitan area (DMA) where the ad was shown or interacted with.
**Field Name:** `location.metro`
**Type:** dimension |
| Location County
| The county where the ad was shown or interacted with.
**Field Name:** `location.county`
**Type:** dimension |
| Location City
| The city name where the ad was shown or interacted with.
**Field Name:** `location.city`
**Type:** dimension |
| Location Postal Code
| The postal code where the ad was shown or interacted with.
**Field Name:** `location.postal_code`
**Type:** dimension |
| Location Most Specific
| The most specific location name available for this geographic area.
**Field Name:** `location.most_specific`
**Type:** dimension |
| Location Type
| The type of geographic location: CITY, METRO, REGION, STATE, COUNTRY, POSTAL\_CODE, etc.
**Field Name:** `location.type`
**Type:** dimension |
| Location Is Targeting
| Whether this location is from targeting settings (true) or user location (false).
**Field Name:** `location.is_targeting`
**Type:** dimension |
### Placement
| | |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Click Type
|
**Field Name:** `segments.click_type`
**Type:** dimension |
| Search Slot
| Shows ad position: SEARCH\_TOP, SEARCH\_OTHER, CONTENT, SEARCH\_PARTNER\_TOP, SEARCH\_PARTNER\_OTHER, MIXED
**Field Name:** `segments.slot`
**Type:** dimension |
| Network
|
**Field Name:** `segments.ad_network_type`
**Type:** dimension |
### Search Terms
| | |
| --------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Search Term
| Search term metric totals might not match campaign or account level totals. Use these reports to get a sense of search terms performance.
**Field Name:** `search_term_view.search_term`
**Type:** dimension |
| Search Term Status
|
**Field Name:** `search_term_view.status`
**Type:** dimension |
| Search Term Match Type
|
**Field Name:** `segments.search_term_match_type`
**Type:** dimension |
### Asset Group Listing Groups
| | |
| ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Listing Group Filter ID
| Unique identifier of the listing group filter node.
**Field Name:** `asset_group_listing_group_filter.id`
**Type:** dimension |
| Listing Group Filter Type
| Can be: SUBDIVSION, UNIT\_INCLUDED, UNIT\_EXCLUDED
**Field Name:** `asset_group_listing_group_filter.type`
**Type:** dimension |
| Listing Group Filter Listing Source
| Can be: SHOPPING, UNKNOWN, UNSPECIFIED, WEBPAGE
**Field Name:** `asset_group_listing_group_filter.listing_source`
**Type:** dimension |
| Listing Group Filter Case Value
| The case value for this listing group filter node. It can be product's: bidding category, brand, channel, condition, custom attribute, item id or type.
**Field Name:** `asset_group_listing_group_filter.custom_case_value`
**Type:** dimension |
| Listing Group Filter Parent ID
| The ID of the parent listing group.
**Field Name:** `asset_group_listing_group_filter.parent_listing_group_filter`
**Type:** dimension |
### Asset & Campaign Link
| | |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign's Asset ID
| This is the ID of the Asset in the P. Max campaign. Use this field to link Campaign Asset's Metrics with P. Max Asset dimensions.
**Field Name:** `segments.asset_interaction_target.asset`
**Type:** dimension |
| Campaign Asset Interaction on this Asset
| Indicates whether the interaction metrics occurred on the asset itself or a different asset or ad unit.
**Field Name:** `segments.asset_interaction_target.interaction_on_this_asset`
**Type:** dimension |
### Top Asset Combination
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Top Combination Number
| Google provides 6 top combinations for each asset type and asset group. This number indicates the order in this list.
**Field Name:** `asset_group_top_combination_view.index`
**Type:** dimension |
| Top Combination Type
| The type of the asset's combination: VIDEO, TEXT and IMAGE.
**Field Name:** `asset_group_top_combination_view.combination_type`
**Type:** dimension |
| Top Combination Asset ID
| The Asset ID of the asset group asset within the combination group.
**Field Name:** `asset_group_top_combination_view.asset_id`
**Type:** dimension |
| Top Combination Asset Type
| The served asset type.
**Field Name:** `asset_group_top_combination_view.served_asset_field_type`
**Type:** dimension |
### Campaign Shopping Settings
| | |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Advertising Partner IDs
| The ads account IDs of advertising partners cooperating within the campaign.
**Field Name:** `campaign.shopping_setting.advertising_partner_ids`
**Type:** dimension |
| Campaign Priority
| Priority of the campaign. Campaigns with numerically higher priorities take precedence over those with lower priorities. This field is required for Shopping campaigns, with values between 0 and 2, inclusive. This field is optional for Smart Shopping campaigns, but must be equal to 3 if set.
**Field Name:** `campaign.shopping_setting.campaign_priority`
**Type:** dimension |
| Disable Product Feed
| Disable the optional product feed. This field is currently supported only for Demand Gen campaigns.
**Field Name:** `campaign.shopping_setting.disable_product_feed`
**Type:** dimension |
| Enable Local Products
| Whether to include local products.
**Field Name:** `campaign.shopping_setting.enable_local`
**Type:** dimension |
| Feed Label
| Feed label of products to include in the campaign. Only one of feed\_label or sales\_country can be set. If used instead of sales\_country, the feed\_label field accepts country codes in the same format for example: 'XX'. Otherwise can be any string used for feed label in Google Merchant Center.
**Field Name:** `campaign.shopping_setting.feed_label`
**Type:** dimension |
| Merchant Center ID
| ID of the Merchant Center account.
**Field Name:** `campaign.shopping_setting.merchant_id`
**Type:** dimension |
| Use vehicle inventory
| Whether to target Vehicle Listing inventory. This field is supported only in Smart Shopping Campaigns.
**Field Name:** `campaign.shopping_setting.use_vehicle_inventory`
**Type:** dimension |
### Campaign Budget
| | |
| ----------------------------------------- | -------------------------------------------------------------------------------------------------- |
| Budget ID
|
**Field Name:** `campaign_budget.id`
**Type:** dimension |
| Budget Name
|
**Field Name:** `campaign_budget.name`
**Type:** dimension |
| Daily Budget
|
**Field Name:** `campaign_budget.amount_micros`
**Type:** dimension |
| Lifetime Budget
|
**Field Name:** `campaign_budget.total_amount_micros`
**Type:** dimension |
| Status
|
**Field Name:** `campaign_budget.status`
**Type:** dimension |
| Type
|
**Field Name:** `campaign_budget.type`
**Type:** dimension |
| Delivery Method
|
**Field Name:** `campaign_budget.delivery_method`
**Type:** dimension |
| Is Explicitly Shared
|
**Field Name:** `campaign_budget.explicitly_shared`
**Type:** dimension |
| Budget Period
|
**Field Name:** `campaign_budget.period`
**Type:** dimension |
| Number of Associated Campaigns
|
**Field Name:** `campaign_budget.reference_count`
**Type:** dimension |
| Aligned Bidding Strategy ID
|
**Field Name:** `campaign_budget.aligned_bidding_strategy_id`
**Type:** dimension |
### Targets
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------- |
| Manual CPA
|
**Field Name:** `campaign.manual_cpa`
**Type:** dimension |
| Manual CPM
|
**Field Name:** `campaign.manual_cpm`
**Type:** dimension |
| Manual CPV
|
**Field Name:** `campaign.manual_cpv`
**Type:** dimension |
| Target CPA
|
**Field Name:** `campaign.target_cpa.target_cpa_micros`
**Type:** dimension |
| Target CPA Ceiling
|
**Field Name:** `campaign.target_cpa.cpc_bid_ceiling_micros`
**Type:** dimension |
| Target CPA Floor
|
**Field Name:** `campaign.target_cpa.cpc_bid_floor_micros`
**Type:** dimension |
| Target ROAS
|
**Field Name:** `campaign.target_roas.target_roas`
**Type:** dimension |
| Target Spend
|
**Field Name:** `campaign.target_spend.target_spend_micros`
**Type:** dimension |
### Asset Group Asset
| | |
| --------------------------- | -------------------------------------------------------------------------------------- |
| Asset ID
|
**Field Name:** `asset_group_asset.id`
**Type:** dimension |
| Asset Name
|
**Field Name:** `asset_group_asset.asset`
**Type:** dimension |
| Asset Status
|
**Field Name:** `asset_group_asset.status`
**Type:** dimension |
| Asset Field Type
|
**Field Name:** `asset_group_asset.field_type`
**Type:** dimension |
| Asset Source
|
**Field Name:** `asset_group_asset.source`
**Type:** dimension |
| Asset Image Url
|
**Field Name:** `asset.image_asset.full_size.url`
**Type:** dimension |
| Asset Type
|
**Field Name:** `asset.type`
**Type:** dimension |
### Ad Assets
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Asset Field Type
| The asset's role in the ad (HEADLINE, DESCRIPTION, MARKETING\_IMAGE, YOUTUBE\_VIDEO, …).
**Field Name:** `ad_group_ad_asset_view.field_type`
**Type:** dimension |
| Ad Asset Performance Label
| Google's performance rating for the asset within the ad: BEST, GOOD, LOW, LEARNING, PENDING.
**Field Name:** `ad_group_ad_asset_view.performance_label`
**Type:** dimension |
| Ad Asset Enabled
| Whether the asset is linked to the latest version of the ad.
**Field Name:** `ad_group_ad_asset_view.enabled`
**Type:** dimension |
| Ad Asset Pinned Field
| The pin position of the asset (Responsive Search Ads).
**Field Name:** `ad_group_ad_asset_view.pinned_field`
**Type:** dimension |
| Ad Asset Source
| Source of the asset: ADVERTISER or AUTOMATICALLY\_CREATED.
**Field Name:** `ad_group_ad_asset_view.source`
**Type:** dimension |
| Asset Id
| The unique ID of the asset.
**Field Name:** `asset.id`
**Type:** dimension |
| Asset Name
| The name of the asset.
**Field Name:** `asset.name`
**Type:** dimension |
| Asset Text
| The text of a text asset (RSA headlines / descriptions).
**Field Name:** `asset.text_asset.text`
**Type:** dimension |
| Asset YouTube Video Id
| The YouTube video ID of a video asset.
**Field Name:** `asset.youtube_video_asset.youtube_video_id`
**Type:** dimension |
| Asset YouTube Video Title
| The title of the YouTube video asset.
**Field Name:** `asset.youtube_video_asset.youtube_video_title`
**Type:** dimension |
| Asset Final Urls
| The landing page URLs of the asset.
**Field Name:** `asset.final_urls`
**Type:** dimension |
| Asset Final Mobile Urls
| The mobile landing page URLs of the asset.
**Field Name:** `asset.final_mobile_urls`
**Type:** dimension |
### Product
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------- |
| Product Aggregator Id
|
**Field Name:** `segments.product_aggregator_id`
**Type:** dimension |
| Product Brand
|
**Field Name:** `segments.product_brand`
**Type:** dimension |
| Product Category Level 1
|
**Field Name:** `segments.product_category_level1`
**Type:** dimension |
| Product Category Level 2
|
**Field Name:** `segments.product_category_level2`
**Type:** dimension |
| Product Category Level 3
|
**Field Name:** `segments.product_category_level3`
**Type:** dimension |
| Product Category Level 4
|
**Field Name:** `segments.product_category_level4`
**Type:** dimension |
| Product Category Level 5
|
**Field Name:** `segments.product_category_level5`
**Type:** dimension |
| Product Channel
|
**Field Name:** `segments.product_channel`
**Type:** dimension |
| Product Channel Exclusivity
|
**Field Name:** `segments.product_channel_exclusivity`
**Type:** dimension |
| Product Condition
|
**Field Name:** `segments.product_condition`
**Type:** dimension |
| Product Country
|
**Field Name:** `segments.product_country`
**Type:** dimension |
| Product Custom Attribute 0
|
**Field Name:** `segments.product_custom_attribute0`
**Type:** dimension |
| Product Custom Attribute 1
|
**Field Name:** `segments.product_custom_attribute1`
**Type:** dimension |
| Product Custom Attribute 2
|
**Field Name:** `segments.product_custom_attribute2`
**Type:** dimension |
| Product Custom Attribute 3
|
**Field Name:** `segments.product_custom_attribute3`
**Type:** dimension |
| Product Custom Attribute 4
|
**Field Name:** `segments.product_custom_attribute4`
**Type:** dimension |
| Product Item Id
|
**Field Name:** `segments.product_item_id`
**Type:** dimension |
| Product Merchant Id
|
**Field Name:** `segments.product_merchant_id`
**Type:** dimension |
| Product Store Id
|
**Field Name:** `segments.product_store_id`
**Type:** dimension |
| Product Title
|
**Field Name:** `segments.product_title`
**Type:** dimension |
| Product Type L1
|
**Field Name:** `segments.product_type_l1`
**Type:** dimension |
| Product Type L2
|
**Field Name:** `segments.product_type_l2`
**Type:** dimension |
| Product Type L3
|
**Field Name:** `segments.product_type_l3`
**Type:** dimension |
| Product Type L4
|
**Field Name:** `segments.product_type_l4`
**Type:** dimension |
| Product Type L5
|
**Field Name:** `segments.product_type_l5`
**Type:** dimension |
### Account
| | |
| ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| Currency Code
|
**Field Name:** `customer.currency_code`
**Type:** dimension |
| Timezone
|
**Field Name:** `customer.time_zone`
**Type:** dimension |
| Has Auto Tagging Enabled
|
**Field Name:** `customer.auto_tagging_enabled`
**Type:** dimension |
| Is Manager Account
|
**Field Name:** `customer.manager`
**Type:** dimension |
| Status
|
**Field Name:** `customer.status`
**Type:** dimension |
| Is Test Account
|
**Field Name:** `customer.test_account`
**Type:** dimension |
| Optimization Score
|
**Field Name:** `customer.optimization_score`
**Type:** dimension |
| Optimization Score Weight
|
**Field Name:** `customer.optimization_score_weight`
**Type:** dimension |
| Has Partners Badge
|
**Field Name:** `customer.has_partners_badge`
**Type:** dimension |
| Global Site Tag
|
**Field Name:** `customer.remarketing_setting.google_global_site_tag`
**Type:** dimension |
| Conversion Tracking Status
|
**Field Name:** `customer.conversion_tracking_setting.conversion_tracking_status`
**Type:** dimension |
| Final URL Suffix
|
**Field Name:** `customer.final_url_suffix`
**Type:** dimension |
### Campaign Negativized Keywords
| | |
| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Negative Keyword Text
| Keywords negativized at the campaign level
**Field Name:** `campaign.negative_keyword.text`
**Type:** dimension |
| Negative Keyword Match Type
| Match Type of the negativized keyword.
**Field Name:** `campaign.negative_keyword.match_type`
**Type:** dimension |
### Conversion Properties
| | |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Conversion Adjustment
| This segments your conversion columns by the original conversion and conversion value versus the delta if conversions were adjusted.
**Field Name:** `segments.conversion_adjustment`
**Type:** dimension |
| Conversions Attribution Event Type
| Conversion attribution event type. Can be: IMPRESSION, INTERACTION
**Field Name:** `segments.conversion_attribution_event_type`
**Type:** dimension |
| Conversions Lag Bucket
| The number of days between the impression and the conversion.
**Field Name:** `segments.conversion_lag_bucket`
**Type:** dimension |
| Conversions or Adjustment Lag Bucket
| The number of days between the impression and the conversion or between the impression and adjustments to the conversion.
**Field Name:** `segments.conversion_or_adjustment_lag_bucket`
**Type:** dimension |
| Conversions Value Rule Primary Dimension
| Primary dimension of applied conversion value rules. Shows the total recorded value of conversions and adjustments based on value rules. (compatible with conversion value metrics)
**Field Name:** `segments.conversion_value_rule_primary_dimension`
**Type:** dimension |
### Account Budget
| | |
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Account Budget Id
|
**Field Name:** `account_budget.id`
**Type:** dimension |
| Account Budget Name
| The name of the account budget.
**Field Name:** `account_budget.name`
**Type:** dimension |
| Account Budget Status
| The status of the account budget.
**Field Name:** `account_budget.status`
**Type:** dimension |
| Account Budget Start Date Time
| The approved start date and time for the account budget.
**Field Name:** `account_budget.approved_start_date_time`
**Type:** dimension |
| Account Budget End Date Time
| The approved end date and time for the account budget.
**Field Name:** `account_budget.approved_end_date_time`
**Type:** dimension |
| Account Budget Notes
| Notes for the account budget.
**Field Name:** `account_budget.notes`
**Type:** dimension |
| Account Budget Adjusted Spending Limit Type
|
**Field Name:** `account_budget.adjusted_spending_limit_type`
**Type:** dimension |
| Account Budget Spending Limit Type
|
**Field Name:** `account_budget.approved_spending_limit_type`
**Type:** dimension |
| Account Budget End Time Type
|
**Field Name:** `account_budget.approved_end_time_type`
**Type:** dimension |
| Account Budget Purchase Order Number
|
**Field Name:** `account_budget.purchase_order_number`
**Type:** dimension |
### Change History
| | |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Changed By
| Email of the user who made the change.
**Field Name:** `change_event.user_email`
**Type:** dimension |
| Change Source
| Where the change was made from (e.g. Google Ads web interface, API). Only changes made through the web UI or API are tracked.
**Field Name:** `change_event.client_type`
**Type:** dimension |
| Changed Resource Type
| Type of resource that changed (e.g. CAMPAIGN, AD\_GROUP, AD\_GROUP\_AD, CAMPAIGN\_BUDGET, AD\_GROUP\_CRITERION).
**Field Name:** `change_event.change_resource_type`
**Type:** dimension |
| Changed Resource
| Resource name (identifier) of the specific item that changed.
**Field Name:** `change_event.change_resource_name`
**Type:** dimension |
| Change Type
| Whether the resource was created, updated or removed.
**Field Name:** `change_event.resource_change_operation`
**Type:** dimension |
| Changed Fields
| List of fields that were modified in the change.
**Field Name:** `change_event.changed_fields`
**Type:** dimension |
| Previous Value
| Values of the changed fields before the change (empty when the resource was newly created).
**Field Name:** `change_event.old_value`
**Type:** dimension |
| New Value
| Values of the changed fields after the change.
**Field Name:** `change_event.new_value`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Google Ads campaigns.
### Most Used
| | |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Cost
| Google Ads's investment over the selected time frame.
**Field Name:** `cost_micros`
**Type:** metric |
| Impressions
| Total number of times ads have been served.
**Field Name:** `impressions`
**Type:** metric |
| Viewable Impressions
| The number of times your ads appeared and were viewable. An ad is counted as viewable when at least 50% of its area was on screen for at least 1 second for Display ads or 2 seconds for video ads.
**Field Name:** `active_view_impressions`
**Type:** metric |
| Clicks
| Total number of ad clicks.
**Field Name:** `clicks`
**Type:** metric |
| Conversions
| Indicates the number of conversions configured as primary attributed to your ad interactions.
**Field Name:** `conversions`
**Type:** metric |
| All Conversions
| Aggregates all conversions, including primary and secondary conversions.
**Field Name:** `all_conversions`
**Type:** metric |
| Conversions Value
| Specifies the total assigned value of conversions.
**Field Name:** `conversions_value`
**Type:** metric |
| All Conversions Value
| Specifies the total assigned value of all conversions.
**Field Name:** `all_conversions_value`
**Type:** metric |
### Reach & Frequency
| | |
| ------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Unique Users
| The number of unique users who saw your ad. Available only at the campaign level on the following campaign types - Display, Video, Discovery and App. Daily and Monthly time groupings available only.
**Field Name:** `unique_users`
**Type:** metric |
| Average Impression Frequency Per User
| The average number of times a unique user saw your ad. Available only at the campaign level on the following campaign types - Display, Video, Discovery and App. Daily and Monthly time groupings available only.
**Field Name:** `average_impression_frequency_per_user`
**Type:** metric |
### Videos
| | |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Video Views
| Quantifies the total number of video ad views.
**Field Name:** `video_views`
**Type:** metric |
| Video 25% View
| Denotes the percentage of video plays that reach 25% of their length.
**Field Name:** `video_quartile_p25_rate`
**Type:** metric |
| Video 50% View
| Denotes the percentage of video plays that reach 50% of their length.
**Field Name:** `video_quartile_p50_rate`
**Type:** metric |
| Video 75% View
| Denotes the percentage of video plays that reach 75% of their length.
**Field Name:** `video_quartile_p75_rate`
**Type:** metric |
| Video 100% View
| Denotes the percentage of video plays that reach 100% of their length.
**Field Name:** `video_quartile_p100_rate`
**Type:** metric |
| Video Played to 25%
| The number of video views where the viewer watched at least 25% of your video.
**Field Name:** `video_quartile_p25_views`
**Type:** metric |
| Video Played to 50%
| The number of video views where the viewer watched at least 50% of your video.
**Field Name:** `video_quartile_p50_views`
**Type:** metric |
| Video Played to 75%
| The number of video views where the viewer watched at least 75% of your video.
**Field Name:** `video_quartile_p75_views`
**Type:** metric |
| Video Played to 100%
| The number of video views where the viewer watched 100% of your video.
**Field Name:** `video_quartile_p100_views`
**Type:** metric |
### Search
| | |
| ---------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Top Impression %
| Displays the percentage of ads served above organic search results.
**Field Name:** `top_impression_percentage`
**Type:** metric |
| Absolute Top Impression %
| Shows the percentage of ads served in the first position above organic search results.
**Field Name:** `absolute_top_impression_percentage`
**Type:** metric |
| Search Click Share
| Represents the number of clicks you've received on the Search Network divided by the estimated number of clicks you were eligible to receive.
**Field Name:** `search_click_share`
**Type:** metric |
| Exact Match I.S.
| Denotes the impressions received divided by the estimated number of impressions eligible to receivefor search terms that matchedyour keywords exactly or were close variants.
**Field Name:** `search_exact_match_impression_share`
**Type:** metric |
| Impression Share
| Indicates the impressions you've received on the Search Network divided by the estimated number of impressions you were eligible toreceive.
**Field Name:** `search_impression_share`
**Type:** metric |
| Top Impression Share
| Specifies the impressions you've received in the top location(above organic search results) divided by the estimated number ofimpressions you were eligible to receive in the top location.
**Field Name:** `search_top_impression_share`
**Type:** metric |
| Absolute Top I.S.
| Refers to the percentage of the customer's Shopping or Search ad impressions that are shown in the most prominent Shopping position.
**Field Name:** `search_absolute_top_impression_share`
**Type:** metric |
| Budget Lost I.S.
| Denotes the estimated percentage of times that your ad was eligible to show on the Search Network but didn 't due to a low budget.
**Field Name:** `search_budget_lost_impression_share`
**Type:** metric |
| Budget Lost Top I.S.
| Specifies the number estimating how often your ad didn't show anywhere above the organic search results due to a low budget.
**Field Name:** `search_budget_lost_top_impression_share`
**Type:** metric |
| Budget Lost Absolute Top I.S.
| Indicates the number estimating how often your ad wasn't the very first ad above the organic search results due to a low budget.
**Field Name:** `search_budget_lost_absolute_top_impression_share`
**Type:** metric |
| Rank Lost I.S.
| Reflects the estimated percentage of impressions on the Search Network that your ads didn 't receive due to poor Ad Rank.
**Field Name:** `search_rank_lost_impression_share`
**Type:** metric |
| Rank Lost Top I.S.
| Shows the number estimating how often your ad didn't show anywhere above the organic search results due to poor Ad Rank.
**Field Name:** `search_rank_lost_top_impression_share`
**Type:** metric |
| Rank Lost Absolute Top I.S.
| Denotes the number estimating how often your ad wasn't the very first ad above the organic search results due to poor Ad Rank.
**Field Name:** `search_rank_lost_absolute_top_impression_share`
**Type:** metric |
| Content Impression Share
| Specifies the percentage of total achievable impressions on Google Display Network.
**Field Name:** `content_impression_share`
**Type:** metric |
| Content Budget Lost I.S.
| Reflects the proportion of potential impressions on Google Display Network lost due to budget constraints.
**Field Name:** `content_budget_lost_impression_share`
**Type:** metric |
| Content Rank Lost I.S.
| Indicates the proportion of potential impressions on Google Display Network lost due to low ad rank.
**Field Name:** `content_rank_lost_impression_share`
**Type:** metric |
### Ratios
| | |
| ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| CTR
| Displays the ratio of ad clicks to ad impressions.
**Field Name:** `ctr`
**Type:** metric |
| CPC
| Shows the average cost incurred per ad click.
**Field Name:** `average_cpc`
**Type:** metric |
| CPM
| Specifies the average cost per thousand ad impressions.
**Field Name:** `average_cpm`
**Type:** metric |
| CPV
| Average cost-per-view (avg. CPV) is the average amount you paid each time someone viewed your video ad. A view is counted when someone watches 30 seconds of your video ad (or the duration if it's shorter than 30 seconds) or interacts with the ad, whichever comes first.
**Field Name:** `average_cpv`
**Type:** metric |
| View Through Conversions
| Captures the number of conversions following a user's ad impression but no click.
**Field Name:** `view_through_conversions`
**Type:** metric |
| Bounce Rate
| Calculates the percentage of single-page sessions with no subsequent user interaction.
**Field Name:** `bounce_rate`
**Type:** metric |
| Average Cost
| The average amount you pay per interaction. This amount is the total cost of your ads divided by the total number of interactions.
**Field Name:** `average_cost`
**Type:** metric |
### Product
| | |
| ---------------------------------------- | ---------------------------------------------------------------------------------------- |
| Average Order Value
|
**Field Name:** `average_order_value_micros`
**Type:** metric |
| Cost of Goods Sold
|
**Field Name:** `cost_of_goods_sold_micros`
**Type:** metric |
| Gross Profit Margin
|
**Field Name:** `gross_profit_margin`
**Type:** metric |
| Gross Profit
|
**Field Name:** `gross_profit_micros`
**Type:** metric |
| Revenue
|
**Field Name:** `revenue_micros`
**Type:** metric |
| Cross Sell Cost of Goods Sold
|
**Field Name:** `cross_sell_cost_of_goods_sold_micros`
**Type:** metric |
| Cross Sell Gross Profit
|
**Field Name:** `cross_sell_gross_profit_micros`
**Type:** metric |
| Cross Sell Revenue
|
**Field Name:** `cross_sell_revenue_micros`
**Type:** metric |
| Cross Sell Units Sold
|
**Field Name:** `cross_sell_units_sold`
**Type:** metric |
| Lead Cost of Goods Sold
|
**Field Name:** `lead_cost_of_goods_sold_micros`
**Type:** metric |
| Lead Gross Profit
|
**Field Name:** `lead_gross_profit_micros`
**Type:** metric |
| Lead Revenue
|
**Field Name:** `lead_revenue_micros`
**Type:** metric |
| Lead Units Sold
|
**Field Name:** `lead_units_sold`
**Type:** metric |
| Units Sold
|
**Field Name:** `units_sold`
**Type:** metric |
| Orders
|
**Field Name:** `orders`
**Type:** metric |
### Keyword
| | |
| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Historical Quality Score
| The historical quality score.
**Field Name:** `historical_quality_score`
**Type:** metric |
| Historical Creative Q.S.
| The creative historical quality score.
**Field Name:** `historical_creative_quality_score`
**Type:** metric |
| Historical Predicted CTR
| The historical search predicted click through rate (CTR).
**Field Name:** `historical_search_predicted_ctr`
**Type:** metric |
| Historical Landing Page Q.S.
| The quality of historical landing page experience.
**Field Name:** `historical_landing_page_quality_score`
**Type:** metric |
### Engagement
| | |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Engagement
| The number of engagements. An engagement occurs when a viewer expands your Lightbox ad.
**Field Name:** `engagements`
**Type:** metric |
| Engagement Rate
| How often people engage with your ad after it's shown to them. This is the number of ad expansions divided by the number of times your ad is shown.
**Field Name:** `engagement_rate`
**Type:** metric |
| Interactions
| The number of interactions. An interaction is the main user action associated with an ad format—clicks for text and shopping ads, views for video ads, and so on.
**Field Name:** `interactions`
**Type:** metric |
| Interaction Rate
| How often people interact with your ad after it is shown to them. This is the number of interactions divided by the number of times your ad is shown.
**Field Name:** `interaction_rate`
**Type:** metric |
### Conversions
| | |
| --------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| All Conversions by Conversions Date
| The total number of conversions. When this column is selected with date, the values in date column means the conversion date.
**Field Name:** `all_conversions_by_conversion_date`
**Type:** metric |
| All Conversions Value by Conversion Date
| The value of all conversions. When this column is selected with date, the values in date column means the conversion date.
**Field Name:** `all_conversions_value_by_conversion_date`
**Type:** metric |
| Conversions by Conversion Date
| The number of conversions. When this column is selected with date, the values in date column means the conversion date.
**Field Name:** `conversions_by_conversion_date`
**Type:** metric |
| Conversions Value by Conversion Date
| The value of conversions. When this column is selected with date, the values in date column means the conversion date.
**Field Name:** `conversions_value_by_conversion_date`
**Type:** metric |
| New Customer Lifetime Value
| All of new customers' lifetime conversion value. This will include the additional conversion value from new customers for both biddable and non-biddable conversions.
**Field Name:** `all_new_customer_lifetime_value`
**Type:** metric |
| All Conversions from Interactions Rate
| All conversions from interactions (as opposed to view through conversions) divided by the number of ad interactions.
**Field Name:** `all_conversions_from_interactions_rate`
**Type:** metric |
| All Conversions Value per Interaction
| The value of all conversions from interactions divided by the total number of interactions.
**Field Name:** `all_conversions_from_interactions_value_per_interaction`
**Type:** metric |
| Conversions from Interactions Rate
| Conversions from interactions divided by the number of ad interactions. This only includes conversion actions which include\_in\_conversions\_metric attribute is set to true.
**Field Name:** `conversions_from_interactions_rate`
**Type:** metric |
| Conversions Value per Interaction
| The value of conversions from interactions divided by the number of ad interactions. This only includes conversion actions which include\_in\_conversions\_metric attribute is set to true.
**Field Name:** `conversions_from_interactions_value_per_interaction`
**Type:** metric |
| Cost per All Conversions
| The cost of ad interactions divided by all conversions.
**Field Name:** `cost_per_all_conversions`
**Type:** metric |
| Cost per Conversion
| The cost of ad interactions divided by conversions. This only includes conversion actions which include\_in\_conversions\_metric attribute is set to true.
**Field Name:** `cost_per_conversion`
**Type:** metric |
| Cross-device Conversions
| Conversions from when a customer clicks on a Google Ads ad on one device, then converts on a different device or browser. Cross-device conversions are already included in all\_conversions.
**Field Name:** `cross_device_conversions`
**Type:** metric |
| Cross-device Conversions Value
| The sum of the value of cross-device conversions.
**Field Name:** `cross_device_conversions_value`
**Type:** metric |
| Value per All Conversions
| The value of all conversions divided by the number of all conversions.
**Field Name:** `value_per_all_conversions`
**Type:** metric |
| Value per Conversion
| The value of conversions divided by the number of conversions. This only includes conversion actions which include\_in\_conversions\_metric attribute is set to true.
**Field Name:** `value_per_conversion`
**Type:** metric |
### Local Actions
| | |
| --------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| All Conversions from Call Button
| The number of times people clicked the 'Call' button to call a store during or after clicking an ad.
**Field Name:** `all_conversions_from_click_to_call`
**Type:** metric |
| All Conversions from Directions
| The number of times people clicked a 'Get directions' button to navigate to a store after clicking an ad.
**Field Name:** `all_conversions_from_directions`
**Type:** metric |
| All Conversions from Menu View
| The number of times people clicked a link to view a store's menu after clicking an ad. This metric applies to feed items only.
**Field Name:** `all_conversions_from_menu`
**Type:** metric |
| All Conversions from Store Orders
| The number of times people placed an order at a store after clicking an ad. This metric applies to feed items only.
**Field Name:** `all_conversions_from_order`
**Type:** metric |
| All Conversions from Other Store Actions
| The number of other conversions (for example, posting a review or saving a location for a store) that occurred after people clicked an ad. This metric applies to feed items only.
**Field Name:** `all_conversions_from_other_engagement`
**Type:** metric |
| All Conversions from Store Visits
| Estimated number of times people visited a store after clicking an ad. This metric applies to feed items only.
**Field Name:** `all_conversions_from_store_visit`
**Type:** metric |
| All Conversions from Store Website
| The number of times that people were taken to a store's URL after clicking an ad. This metric applies to feed items only.
**Field Name:** `all_conversions_from_store_website`
**Type:** metric |
### Account Budget
| | |
| ------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Account Budget Amount Served
| The total amount served for the account budget.
**Field Name:** `account_budget.amount_served_micros`
**Type:** metric |
| Account Budget Adjusted Spending Limit
| The adjusted spending limit for the account budget.
**Field Name:** `account_budget.adjusted_spending_limit_micros`
**Type:** metric |
| Account Budget Spending Limit
| The approved spending limit for the account budget.
**Field Name:** `account_budget.approved_spending_limit_micros`
**Type:** metric |
| Account Budget Proposed Spending Limit
| The proposed spending limit for the account budget.
**Field Name:** `account_budget.proposed_spending_limit_micros`
**Type:** metric |
| Account Budget Total Adjustments
| The total adjustments for the account budget.
**Field Name:** `account_budget.total_adjustments_micros`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
TikTok Ads metrics & dimensions
LinkedIn Ads metrics & dimensions
# Google Ads Troubleshooting
Source: https://support.detrics.io/data-source/google-ads/troubleshooting
Complete troubleshooting guide for Google Ads integration
**Last updated:** July 28, 2025
Having trouble connecting your Google Ads account to Detrics? This comprehensive guide will help you diagnose and resolve the most common connection issues.
## Understanding Google Access Expiration
Google disconnections typically occur when you first start using Detrics. The exact reason for these initial disconnections is unclear, but they commonly happen during the early stages of using the platform. Once this initial issue is resolved through reconnection, you won't need to reconnect again.
**Solution:** When access expires, you'll need to **reconnect your Google Ads account to Detrics** through the connection setup process. This re-establishes the authentication and renews the access tokens.
**Important:** Once you reconnect Google Ads, all your existing queries and Looker Studio dashboards linked to your Google accounts will automatically start working again. The reconnection process fixes all connections at once - you don't need to recreate your queries or dashboards.
**Note: While these steps illustrate Google Ads case, they work for all Google products (Google Analytics 4 and Google Sheets).**
## Fix Persistent Connection Issues (Full Reset)
If reconnecting doesn't resolve your issues, follow these steps for a complete reset. This will fix all your Google Ads queries and dashboards at once.
Go to [Google Account Permissions](https://myaccount.google.com/permissions)
and revoke access to the Detrics app.
Open a new Google Spreadsheet or [click here](https://sheets.new) to create
a new sheet directly.
Fire up Detrics: Select *Extensions* > *Detrics* > *Launch*
Click on *"Connect Data Source"*
Choose Google Ads from the list of available data sources.
Complete the reconnection process to re-establish access.
Reconnect Google Sheets to complete the process.
**⚠️ IMPORTANT:** After completing this process, you must reconnect ALL Google products you use with Detrics:
* Google Analytics 4
* DV360
* Google Sheets
* Google Ads
* Google Search Console
Failure to reconnect all products will result in incomplete data synchronization.
## Shared Connection Between Google Sheets and Looker Studio
Google Sheets and Looker Studio share the same Google Ads connection. This means:
* **Single reconnection fixes both platforms:** When you reconnect Google Ads through Google Sheets, your Looker Studio dashboards are automatically fixed too
* **No duplicate setup needed:** You only need to reconnect once, regardless of which platform you primarily use
### Alternative: Reconnect Through Looker Studio
Looker Studio users can also reconnect Google Ads directly through Looker Studio:
1. Open your Looker Studio dashboard that uses Google Ads data
2. Click on any chart showing connection errors
3. Select "Reconnect" when prompted
4. Complete the Google Ads authentication process
5. All your Google Ads queries in both Looker Studio and Google Sheets will be restored
**Need help?** If errors persist after following these steps, please reach out
to [support@detrics.io](mailto:support@detrics.io)
# Google Analytics 4 Metrics & Dimensions
Source: https://support.detrics.io/data-source/google-analytics-4/fields
Complete reference for Google Analytics 4 dimensions and metrics
**Last updated:** August 6, 2026
168 dimensions
84 metrics
This reference covers all available dimensions and metrics for Google Analytics 4 data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Google Analytics 4 data.
### Traffic Sources
| | |
| ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Session Source
| The source that initiated a session on your website or app. For example,if people visit from google.com,your traffic sourceis 'google'. Attribution Model: Last Click.
**Field Name:** `sessionSource`
**Type:** dimension |
| Session Medium
| The medium that initiated a session on your website or app. It is the category of the traffic source.For example,if people visit yourwebsite from google 's organic search results, the medium would be 'organic'. Attribution Model: Last Click.
**Field Name:** `sessionMedium`
**Type:** dimension |
| Session Campaign ID
| The ID of the marketing campaign driving traffic to your website or app. You can send the campaign ID using UTM parameters on your ad 's links. Attribution Model: Last Click.
**Field Name:** `sessionCampaignId`
**Type:** dimension |
| Session Campaign Name
| The name of the marketing campaign driving traffic to your website or app. You can send the campaign name using UTM parameters on your ad 's links. Attribution Model: Last Click.
**Field Name:** `sessionCampaignName`
**Type:** dimension |
| Session Content
| The ad content that led to a session. Populated by the utm\_content parameter. Attribution Model: Last Click.
**Field Name:** `sessionManualAdContent`
**Type:** dimension |
| Session Default Channel Group
| The default channel group is based primarily on source and medium.GA4 defined traffic categories which includes 'Direct','Organic Search ', 'Paid Social ', 'OrganicSocial ', 'Email ', 'Affiliates ', 'Referral ', 'Paid Search ', 'Video ', and 'Display'. Attribution Model: Last Click.
**Field Name:** `sessionDefaultChannelGroup`
**Type:** dimension |
| Session Source / Medium
| The combined values of the source and medium dimensions. It is very common to see those two values together. Attribution Model: Last Click.
**Field Name:** `sessionSourceMedium`
**Type:** dimension |
| Session Manual Term
| The term that led to a session. Populated by the utm\_term parameter. Attribution Model: Last Click.
**Field Name:** `sessionManualTerm`
**Type:** dimension |
### Account
| | |
| ------------------------ | -------------------------------------------------------------------------------------------------------------------------- |
| Account ID
|
**Field Name:** `accountId`
**Type:** dimension |
| Account Name
|
**Field Name:** `accountName`
**Type:** dimension |
| Property ID
|
**Field Name:** `propertyId`
**Type:** dimension |
| Property Name
|
**Field Name:** `propertyName`
**Type:** dimension |
| Stream ID
| The numeric data stream identifier for your app or website.
**Field Name:** `streamId`
**Type:** dimension |
| Stream Name
| The data stream name for your app or website.
**Field Name:** `streamName`
**Type:** dimension |
### Events
| | |
| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Event Name
|
**Field Name:** `eventName`
**Type:** dimension |
| Is Conversion
|
**Field Name:** `isConversionEvent`
**Type:** dimension |
| Is Key Event
| The string "true" if the event is a key event. Marking an event as a key event affects reports from time of creation.
**Field Name:** `isKeyEvent`
**Type:** dimension |
| Method
| The method by which an event was triggered. Populated by the event parameter method.
**Field Name:** `method`
**Type:** dimension |
### First Click Attribution
| | |
| ------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Default Channel Group
| The default channel group that first acquired the user. Default channel group is based primarily on source and medium. An enumeration which includes 'Direct', 'Organic Search', 'Paid Social', 'Organic Social', 'Email', 'Affiliates', 'Referral', 'Paid Search', 'Video', and 'Display'.
**Field Name:** `firstUserDefaultChannelGroup`
**Type:** dimension |
| Campaign ID
| ID of the marketing campaign that first acquired the user.
**Field Name:** `firstUserCampaignId`
**Type:** dimension |
| Campaign Name
| Name of the marketing campaign that first acquired the user.
**Field Name:** `firstUserCampaignName`
**Type:** dimension |
| Source
| The utm\_source that first acquired the user.
**Field Name:** `firstUserSource`
**Type:** dimension |
| Medium
| The utm\_medium that first acquired the user.
**Field Name:** `firstUserMedium`
**Type:** dimension |
| First User Google Ads Account Name
| The Account name from Google Ads that first acquired the user.
**Field Name:** `firstUserGoogleAdsAccountName`
**Type:** dimension |
| First User Google Ads Ad Group ID
| The Ad Group Id in Google Ads that first acquired the user.
**Field Name:** `firstUserGoogleAdsAdGroupId`
**Type:** dimension |
| First User Google Ads Ad Group Name
| The Ad Group Name in Google Ads that first acquired the user.
**Field Name:** `firstUserGoogleAdsAdGroupName`
**Type:** dimension |
| First User Google Ads Ad Network Type
| The advertising network that first acquired the user. An enumeration which includes Google search, Search partners, Google Display Network, YouTube Search, YouTube Videos, Cross-network, Social, and (universal campaign).
**Field Name:** `firstUserGoogleAdsAdNetworkType`
**Type:** dimension |
| First User Google Ads Campaign ID
| Identifier of the Google Ads marketing campaign that first acquired the user.
**Field Name:** `firstUserGoogleAdsCampaignId`
**Type:** dimension |
| First User Google Ads Campaign Name
| Name of the Google Ads marketing campaign that first acquired the user.
**Field Name:** `firstUserGoogleAdsCampaignName`
**Type:** dimension |
| First User Google Ads Campaign Type
| The campaign type of the Google Ads campaign that first acquired the user. Campaign types determine where customers see your ads and the settings and options available to you in Google Ads. Campaign type is an enumeration that includes: Search, Display, Shopping, Video, Demand Gen, App, Smart, Hotel, Local, and Performance Max.
**Field Name:** `firstUserGoogleAdsCampaignType`
**Type:** dimension |
| First User Google Ads Creative ID
| The ID of the Google Ads creative that first acquired the user. Creative IDs identify individual ads.
**Field Name:** `firstUserGoogleAdsCreativeId`
**Type:** dimension |
| First User Google Ads Customer ID
| The Customer ID from Google Ads that first acquired the user. Customer IDs in Google Ads uniquely identify Google Ads accounts.
**Field Name:** `firstUserGoogleAdsCustomerId`
**Type:** dimension |
| First User Google Ads Keyword Text
| The matched keyword that first acquired the user. Keywords are words or phrases describing your product or service that you choose to get your ad in front of the right customers.
**Field Name:** `firstUserGoogleAdsKeyword`
**Type:** dimension |
| First User Google Ads Query
| The search query that first acquired the user.
**Field Name:** `firstUserGoogleAdsQuery`
**Type:** dimension |
### Google Ads Traffic Sources
| | |
| --------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Session Google Ads Account Name
| The Account name from Google Ads that led to the session. Corresponds to customer.descriptive\_name in the Google Ads API.
**Field Name:** `sessionGoogleAdsAccountName`
**Type:** dimension |
| Session Google Ads Ad Group ID
| The Ad Group Id in Google Ads for a session.
**Field Name:** `sessionGoogleAdsAdGroupId`
**Type:** dimension |
| Session Google Ads Ad Group Name
| The Ad Group Name in Google Ads for a session.
**Field Name:** `sessionGoogleAdsAdGroupName`
**Type:** dimension |
| Session Google Ads Ad Network Type
| The advertising network that led to the session. An enumeration which includes Google search, Search partners, Google Display Network, YouTube Search, YouTube Videos, Cross-network, Social, and (universal campaign).
**Field Name:** `sessionGoogleAdsAdNetworkType`
**Type:** dimension |
| Session Google Ads Campaign ID
| The Campaign ID for the Google Ads Campaign that led to this session.
**Field Name:** `sessionGoogleAdsCampaignId`
**Type:** dimension |
| Session Google Ads Campaign Name
| The Campaign name for the Google Ads Campaign that led to this session.
**Field Name:** `sessionGoogleAdsCampaignName`
**Type:** dimension |
| Session Google Ads Campaign Type
| The campaign type for the Google Ads campaign that led to this session. Campaign types determine where customers see your ads and the settings and options available to you in Google Ads.
**Field Name:** `sessionGoogleAdsCampaignType`
**Type:** dimension |
| Session Google Ads Creative ID
| The ID of the Google Ads creative that led to a session on your website or app. Creative IDs identify individual ads.
**Field Name:** `sessionGoogleAdsCreativeId`
**Type:** dimension |
| Session Google Ads Customer ID
| The Customer ID from Google Ads that led to the session. Customer IDs in Google Ads uniquely identify Google Ads accounts.
**Field Name:** `sessionGoogleAdsCustomerId`
**Type:** dimension |
| Session Google Ads Keyword Text
| The matched keyword that led to the session. Keywords are words or phrases describing your product or service that you choose to get your ad in front of the right customers.
**Field Name:** `sessionGoogleAdsKeyword`
**Type:** dimension |
| Session Google Ads Query
| The search query that led to the session.
**Field Name:** `sessionGoogleAdsQuery`
**Type:** dimension |
### Data Driven Attribution
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Default Channel Group
| These dimensions are compatible only with Conversion Events metrics. The default attribution model is data driven on all GA4 properties by default, but you can change it to First or Last click on the admin configuration.
**Field Name:** `defaultChannelGroup`
**Type:** dimension |
| Campaign ID
| The identifier of the marketing campaign. Present only for Conversion Events. Includes Google Ads Campaigns, Manual Campaigns & other Campaigns.
**Field Name:** `campaignId`
**Type:** dimension |
| Campaign Name
| The name of the marketing campaign. Present only for Conversion Events. Includes Google Ads Campaigns, Manual Campaigns, & other Campaigns.
**Field Name:** `campaignName`
**Type:** dimension |
| Ad Group ID
| The ad group id attributed to the Conversion Event.
**Field Name:** `googleAdsAdGroupId`
**Type:** dimension |
| Source
| The source attributed to the Conversion Event.
**Field Name:** `source`
**Type:** dimension |
| Medium
| The medium attributed to the Conversion Event.
**Field Name:** `medium`
**Type:** dimension |
| Manual Term
| The term attributed to the Conversion Event. Populated by the utm\_term parameter.
**Field Name:** `manualTerm`
**Type:** dimension |
| Manual Ad Content
| TThe ad content attributed to the Conversion Event. Populated by the utm\_content parameter.
**Field Name:** `manualAdContent`
**Type:** dimension |
| Google Ads Account Name
| The Account name from Google Ads for the campaign that led to the key event. Corresponds to customer.descriptive\_name in the Google Ads API.
**Field Name:** `googleAdsAccountName`
**Type:** dimension |
| Google Ads Ad Group Name
| The ad group name attributed to the key event.
**Field Name:** `googleAdsAdGroupName`
**Type:** dimension |
| Google Ads Ad Network Type
| The advertising network type of the key event. An enumeration which includes Google search, Search partners, Google Display Network, YouTube Search, YouTube Videos, Cross-network, Social, and (universal campaign).
**Field Name:** `googleAdsAdNetworkType`
**Type:** dimension |
| Google Ads Campaign ID
| The campaign ID for the Google Ads campaign attributed to the key event.
**Field Name:** `googleAdsCampaignId`
**Type:** dimension |
| Google Ads Campaign Name
| The campaign name for the Google Ads campaign attributed to the key event.
**Field Name:** `googleAdsCampaignName`
**Type:** dimension |
| Google Ads Campaign Type
| The campaign type for the Google Ads campaign attributed to the key event. Campaign types determine where customers see your ads and the settings and options available to you in Google Ads.
**Field Name:** `googleAdsCampaignType`
**Type:** dimension |
| Google Ads Creative ID
| The ID of the Google Ads creative attributed to the key event. Creative IDs identify individual ads.
**Field Name:** `googleAdsCreativeId`
**Type:** dimension |
| Google Ads Customer ID
| The Customer ID from Google Ads for the campaign that led to the key event. Customer IDs in Google Ads uniquely identify Google Ads accounts.
**Field Name:** `googleAdsCustomerId`
**Type:** dimension |
| Google Ads Keyword Text
| The matched keyword that led to the key event. Keywords are words or phrases describing your product or service that you choose to get your ad in front of the right customers.
**Field Name:** `googleAdsKeyword`
**Type:** dimension |
| Google Ads Query
| The search query that led to the key event.
**Field Name:** `googleAdsQuery`
**Type:** dimension |
### Page Tracking
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Host Name
| Includes the subdomain and domain names of a URL; for example, the Host Name of [www.example.com/contact.html](http://www.example.com/contact.html) is [www.example.com](http://www.example.com)
**Field Name:** `hostName`
**Type:** dimension |
| Page Path
| The portion of the URL between the hostname and query string for web pages visited; for example, the pagePath portion of [https://www.example.com/store/contact-us?query\_string=true](https://www.example.com/store/contact-us?query_string=true) is /store/contact-us
**Field Name:** `pagePath`
**Type:** dimension |
| Page Title
| The web page titles used on your site.
**Field Name:** `pageTitle`
**Type:** dimension |
| Landing Page + Query String
| The page path + query string associated with the first pageview in a session.
**Field Name:** `landingPagePlusQueryString`
**Type:** dimension |
| Page Referrer
| The full referring URL including the hostname and path. This referring URL is the user's previous URL and can be this website's domain or other domains. Populated by the event parameter 'page\_referrer'.
**Field Name:** `pageReferrer`
**Type:** dimension |
| File Extension
| The extension of the downloaded file (for example, pdf or txt). Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `fileExtension`
**Type:** dimension |
| File Name
| The page path of the downloaded file (for example, /menus/dinner-menu.pdf). Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `fileName`
**Type:** dimension |
| Full Page URL
| The hostname, page path, and query string for web pages visited; for example, the fullPageUrl portion of [https://www.example.com/store/contact-us?query\_string=true](https://www.example.com/store/contact-us?query_string=true) is [www.example.com/store/contact-us?query\_string=true](http://www.example.com/store/contact-us?query_string=true).
**Field Name:** `fullPageUrl`
**Type:** dimension |
| Link Classes
| The HTML class attribute for an outbound link. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `linkClasses`
**Type:** dimension |
| Link Domain
| The destination domain of the outbound link. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `linkDomain`
**Type:** dimension |
| Link ID
| The HTML ID attribute for an outbound link or file download. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `linkId`
**Type:** dimension |
| Link Text
| The link text of the file download. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `linkText`
**Type:** dimension |
| Link URL
| The full URL for an outbound link or file download. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `linkUrl`
**Type:** dimension |
| Outbound
| Returns true if the link led to a site that is not a part of the property's domain. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `outbound`
**Type:** dimension |
| Percent Scrolled
| The percentage down the page that the user has scrolled (for example, 90). Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `percentScrolled`
**Type:** dimension |
| Search Term
| The term searched by the user. Automatically populated if Enhanced Measurement is enabled.
**Field Name:** `searchTerm`
**Type:** dimension |
### E-commerce
| | |
| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Transaction ID
|
**Field Name:** `transactionId`
**Type:** dimension |
| Order Coupon
|
**Field Name:** `orderCoupon`
**Type:** dimension |
| Shipping Tier
|
**Field Name:** `shippingTier`
**Type:** dimension |
| Currency
| The local currency code (based on ISO 4217 standard) of the eCommerce event.
**Field Name:** `currencyCode`
**Type:** dimension |
| Virtual Currency Name
| The name of a virtual currency with which the user is interacting.
**Field Name:** `virtualCurrencyName`
**Type:** dimension |
### Geography
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Continent
|
**Field Name:** `continent`
**Type:** dimension |
| Country
|
**Field Name:** `country`
**Type:** dimension |
| Region
|
**Field Name:** `region`
**Type:** dimension |
| City
|
**Field Name:** `city`
**Type:** dimension |
| City ID
| The geographic ID of the city from which the user activity originated, derived from their IP address.
**Field Name:** `cityId`
**Type:** dimension |
| Continent ID
| The geographic ID of the continent from which the user activity originated.
**Field Name:** `continentId`
**Type:** dimension |
| Country ID
| The geographic ID of the country from which the user activity originated, derived from their IP address.
**Field Name:** `countryId`
**Type:** dimension |
### Device
| | |
| ---------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Device Category
|
**Field Name:** `deviceCategory`
**Type:** dimension |
| Operating System
|
**Field Name:** `operatingSystem`
**Type:** dimension |
| Browser
|
**Field Name:** `browser`
**Type:** dimension |
| Mobile Device Branding
|
**Field Name:** `mobileDeviceBranding`
**Type:** dimension |
| Mobile Device Model
|
**Field Name:** `mobileDeviceModel`
**Type:** dimension |
| Device Model
| The mobile device model (example: iPhone 10,6).
**Field Name:** `deviceModel`
**Type:** dimension |
| Device
| The branded device name (examples: Galaxy S10 or P30 Pro).
**Field Name:** `mobileDeviceMarketingName`
**Type:** dimension |
| OS Version
| The operating system versions used by visitors to your website or app. For example, Android 10's version is 10, and iOS 13.5.1's version is 13.5.1.
**Field Name:** `operatingSystemVersion`
**Type:** dimension |
| Operating System with Version
| The operating system and version. For example, Android 10 or Windows 7.
**Field Name:** `operatingSystemWithVersion`
**Type:** dimension |
### User Characteristics
| | |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Age
|
**Field Name:** `userAgeBracket`
**Type:** dimension |
| Gender
|
**Field Name:** `userGender`
**Type:** dimension |
| Language
|
**Field Name:** `language`
**Type:** dimension |
| Interests
| Interests demonstrated by users who are higher in the shopping funnel. Users can be counted in multiple interest categories. For example, Shoppers, Lifestyles & Hobbies/Pet Lovers, or Travel/Travel Buffs/Beachbound Travelers.
**Field Name:** `brandingInterest`
**Type:** dimension |
| New / Returning
| New users have 0 previous sessions, and returning users have 1 or more previous sessions. This dimension returns two values: new or returning.
**Field Name:** `newVsReturning`
**Type:** dimension |
| Language Code
| The language setting (ISO 639) of the user's browser or device. For example, en-us.
**Field Name:** `languageCode`
**Type:** dimension |
| Signed in with User ID
| The string "yes" if the user signed in with the User-ID feature.
**Field Name:** `signedInWithUserId`
**Type:** dimension |
### Store Items
| | |
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Item ID
|
**Field Name:** `itemId`
**Type:** dimension |
| Item Brand
|
**Field Name:** `itemBrand`
**Type:** dimension |
| Item Category
|
**Field Name:** `itemCategory`
**Type:** dimension |
| Item Name
|
**Field Name:** `itemName`
**Type:** dimension |
| Item Variant
|
**Field Name:** `itemVariant`
**Type:** dimension |
| Item Affiliation
|
**Field Name:** `itemAffiliation`
**Type:** dimension |
| Item Category 2
| The hierarchical category in which the item is classified. For example, in Apparel/Mens/Summer/Shirts/T-shirts, Mens is the item category 2.
**Field Name:** `itemCategory2`
**Type:** dimension |
| Item Category 3
| The hierarchical category in which the item is classified.
**Field Name:** `itemCategory3`
**Type:** dimension |
| Item Category 4
| The hierarchical category in which the item is classified.
**Field Name:** `itemCategory4`
**Type:** dimension |
| Item Category 5
| The hierarchical category in which the item is classified.
**Field Name:** `itemCategory5`
**Type:** dimension |
| Item List ID
| The ID of the item list.
**Field Name:** `itemListId`
**Type:** dimension |
| Item List Name
| The name of the item list.
**Field Name:** `itemListName`
**Type:** dimension |
| Item List Position
| The position of an item in a list.
**Field Name:** `itemListPosition`
**Type:** dimension |
| Item Location ID
| The physical location associated with the item.
**Field Name:** `itemLocationID`
**Type:** dimension |
### App Info
| | |
| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
| App Version
|
**Field Name:** `appVersion`
**Type:** dimension |
| Screen Resolution
|
**Field Name:** `screenResolution`
**Type:** dimension |
| Platform
| The platform on which your app or website ran; for example, web, iOS, or Android.
**Field Name:** `platform`
**Type:** dimension |
| Platform / Device Category
| The platform and type of device on which your website or mobile app ran.
**Field Name:** `platformDeviceCategory`
**Type:** dimension |
### Ads
| | |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Ad Format
| Describes the way ads looked and where they were located. Typical formats include Interstitial, Banner, Rewarded, and Native advanced.
**Field Name:** `adFormat`
**Type:** dimension |
| Ad Source
| The source network that served the ad. Typical sources include AdMob Network, Liftoff, Facebook Audience Network, and Mediated house ads.
**Field Name:** `adSourceName`
**Type:** dimension |
| Ad Unit
| The name you chose to describe this Ad unit. Ad units are containers you place in your apps to show ads to users.
**Field Name:** `adUnitName`
**Type:** dimension |
### Audience
| | |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Audience ID
| The numeric identifier of an Audience. Users are reported in the audiences to which they belonged during the report's date range. Current user behavior does not affect historical audience membership in reports.
**Field Name:** `audienceId`
**Type:** dimension |
| Audience Name
| The given name of an Audience. Users are reported in the audiences to which they belonged during the report's date range. Current user behavior does not affect historical audience membership in reports.
**Field Name:** `audienceName`
**Type:** dimension |
| Audience Resource Name
| The resource name of this audience. Resource names contain both collection & resource identifiers to uniquely identify a resource.
**Field Name:** `audienceResourceName`
**Type:** dimension |
### Campaign Manager 360
| | |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| CM360 Account ID
| The CM360 Account ID that led to the key event. Identifies the CM360 Account.
**Field Name:** `cm360AccountId`
**Type:** dimension |
| CM360 Account Name
| The CM360 Account Name that led to the key event. A CM360 account consists of advertisers, sites, campaigns, and user profiles.
**Field Name:** `cm360AccountName`
**Type:** dimension |
| CM360 Advertiser ID
| The CM360 Advertiser ID that led to the key event. A CM360 Advertiser contains a group of campaigns, creative assets, and other settings.
**Field Name:** `cm360AdvertiserId`
**Type:** dimension |
| CM360 Advertiser Name
| The CM360 Advertiser Name that led to the key event. A CM360 Advertiser contains a group of campaigns, creative assets, and other settings.
**Field Name:** `cm360AdvertiserName`
**Type:** dimension |
| CM360 Campaign ID
| The CM360 Campaign ID that led to the key event. A CM360 campaign can be configured to specify when your ads run, what landing pages are used, and other properties.
**Field Name:** `cm360CampaignId`
**Type:** dimension |
| CM360 Campaign Name
| The CM360 Campaign Name that led to the key event.
**Field Name:** `cm360CampaignName`
**Type:** dimension |
| CM360 Creative ID
| The CM360 Creative ID that led to the key event. Identifies a CM360 creative.
**Field Name:** `cm360CreativeId`
**Type:** dimension |
| CM360 Creative Name
| The CM360 Creative Name that led to the key event.
**Field Name:** `cm360CreativeName`
**Type:** dimension |
| CM360 Creative Type
| The CM360 Creative Type that led to the key event. A category of CM360 creatives like "Display" or "Tracking".
**Field Name:** `cm360CreativeType`
**Type:** dimension |
| CM360 Creative Version
| The CM360 Creative Version that led to the key event.
**Field Name:** `cm360CreativeVersion`
**Type:** dimension |
| CM360 Medium
| The CM360 Medium that led to the key event. The CM360 medium is also referred to as the placement cost structure.
**Field Name:** `cm360Medium`
**Type:** dimension |
| CM360 Source
| The CM360 Source that led to the key event.
**Field Name:** `cm360Source`
**Type:** dimension |
| CM360 Source / Medium
| The CM360 Source Medium that led to the key event. A combination of the source and medium.
**Field Name:** `cm360SourceMedium`
**Type:** dimension |
### Display & Video 360
| | |
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| DV360 Advertiser ID
| The DV360 Advertiser ID that led to the key event. Identifies the DV360 advertiser.
**Field Name:** `dv360AdvertiserId`
**Type:** dimension |
| DV360 Advertiser Name
| The DV360 Advertiser Name that led to the key event. DV360 advertisers represent real-life businesses that run advertising campaigns.
**Field Name:** `dv360AdvertiserName`
**Type:** dimension |
| DV360 Campaign ID
| The DV360 Campaign ID that led to the key event. Identifies the DV360 campaign.
**Field Name:** `dv360CampaignId`
**Type:** dimension |
| DV360 Campaign Name
| The DV360 Campaign Name that led to the key event.
**Field Name:** `dv360CampaignName`
**Type:** dimension |
| DV360 Creative ID
| The DV360 Creative ID that led to the key event.
**Field Name:** `dv360CreativeId`
**Type:** dimension |
| DV360 Creative Name
| The DV360 Creative Name that led to the key event.
**Field Name:** `dv360CreativeName`
**Type:** dimension |
| DV360 Insertion Order ID
| The DV360 Insertion Order ID that led to the key event.
**Field Name:** `dv360InsertionOrderId`
**Type:** dimension |
| DV360 Insertion Order Name
| The DV360 Insertion Order Name that led to the key event.
**Field Name:** `dv360InsertionOrderName`
**Type:** dimension |
| DV360 Line Item ID
| The DV360 Line Item ID that led to the key event.
**Field Name:** `dv360LineItemId`
**Type:** dimension |
| DV360 Line Item Name
| The DV360 Line Item Name that led to the key event.
**Field Name:** `dv360LineItemName`
**Type:** dimension |
### Games
| | |
| ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Achievement ID
| The achievement ID in a game for an event. Populated by the event parameter achievement\_id.
**Field Name:** `achievementId`
**Type:** dimension |
| Character
| The player character in a game for an event. Populated by the event parameter character.
**Field Name:** `character`
**Type:** dimension |
| Group ID
| The player group ID in a game for an event. Populated by the event parameter group\_id.
**Field Name:** `groupId`
**Type:** dimension |
| Level
| The player's level in a game. Populated by the event parameter level.
**Field Name:** `level`
**Type:** dimension |
### Promotions
| | |
| --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| Item Promotion Creative Name
| The name of the item-promotion creative.
**Field Name:** `itemPromotionCreativeName`
**Type:** dimension |
| Item Promotion Creative Slot
| The name of the promotional creative slot associated with the item.
**Field Name:** `itemPromotionCreativeSlot`
**Type:** dimension |
| Item Promotion ID
| The ID of the item promotion.
**Field Name:** `itemPromotionId`
**Type:** dimension |
| Item Promotion Name
| The name of the promotion for the item.
**Field Name:** `itemPromotionName`
**Type:** dimension |
### Media
| | |
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Video Provider
| The source of the video (for example, YouTube). Automatically populated for embedded videos if Enhanced Measurement is enabled.
**Field Name:** `videoProvider`
**Type:** dimension |
| Video Title
| The title of the video. Automatically populated for embedded videos if Enhanced Measurement is enabled.
**Field Name:** `videoTitle`
**Type:** dimension |
| Video URL
| The URL of the video. Automatically populated for embedded videos if Enhanced Measurement is enabled.
**Field Name:** `videoUrl`
**Type:** dimension |
| Visible
| Returns true if the content is visible. Automatically populated for embedded videos if Enhanced Measurement is enabled.
**Field Name:** `visible`
**Type:** dimension |
### Configuration
| | |
| -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| Test Data Filter ID
| The numeric identifier of a data filter in testing state.
**Field Name:** `testDataFilterId`
**Type:** dimension |
| Test Data Filter Name
| The name of data filters in testing state.
**Field Name:** `testDataFilterName`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Google Analytics 4 campaigns.
### User Engagement
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Sessions
| A session is initiated when an app is opened in the foreground or when a webpage is opened.By default, a sessions ends after 30 minutes of user inactivity.
**Field Name:** `sessions`
**Type:** metric |
| Total Users
| The number of distinct users who have interacted with your website or app.
**Field Name:** `totalUsers`
**Type:** metric |
| Engaged Sessions
| An engaged session is defined as a session that: lasted 10 seconds or longer, had one or more key events fired or had two or more pageviews.
**Field Name:** `engagedSessions`
**Type:** metric |
| Average Session Duration
| The average duration in seconds of user's sessions.
**Field Name:** `averageSessionDuration`
**Type:** metric |
| Engagement Rate
| The percentage of engaged sessions (Engaged sessions divided by Sessions).
**Field Name:** `engagementRate`
**Type:** metric |
| Bounce Rate
| The percentage of sessions that were not engaged ((Sessions Minus Engaged sessions) divided by Sessions).
**Field Name:** `bounceRate`
**Type:** metric |
| DAU / MAU
| The rolling percent of 30-day active users who are also 1-day active users.
**Field Name:** `dauPerMau`
**Type:** metric |
| DAU / WAU
| The rolling percent of 7-day active users who are also 1-day active users.
**Field Name:** `dauPerWau`
**Type:** metric |
| Sessions per User
| The average number of sessions per user (Sessions divided by Active Users).
**Field Name:** `sessionsPerUser`
**Type:** metric |
| User Engagement Duration
| The total amount of time (in seconds) your website or app was in the foreground of users' devices.
**Field Name:** `userEngagementDuration`
**Type:** metric |
| WAU / MAU
| The rolling percent of 30-day active users who are also 7-day active users.
**Field Name:** `wauPerMau`
**Type:** metric |
### E-commerce
| | |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| E-commerce Purchases
|
**Field Name:** `ecommercePurchases`
**Type:** metric |
| Transactions
|
**Field Name:** `transactions`
**Type:** metric |
| Purchase Revenue
|
**Field Name:** `purchaseRevenue`
**Type:** metric |
| Checkouts
|
**Field Name:** `checkouts`
**Type:** metric |
| Add To Carts
|
**Field Name:** `addToCarts`
**Type:** metric |
| Conversions
|
**Field Name:** `conversions`
**Type:** metric |
| User Conversion Rate
|
**Field Name:** `userConversionRate`
**Type:** metric |
| Purchaser Conversion Rate
|
**Field Name:** `purchaserConversionRate`
**Type:** metric |
| First Time Purchaser C.R.
|
**Field Name:** `firstTimePurchaserConversionRate`
**Type:** metric |
| Average Purchase Revenue
| The average purchase revenue in the transaction group of events.
**Field Name:** `averagePurchaseRevenue`
**Type:** metric |
| ARPPU
| Average revenue per paying user (ARPPU) is the total purchase revenue per active user that logged a purchase event. The summary metric is for the time period selected.
**Field Name:** `averagePurchaseRevenuePerPayingUser`
**Type:** metric |
| Average Purchase Revenue per User
| The average purchase revenue per active user that logged any event. The summary metric is for the time period selected.
**Field Name:** `averagePurchaseRevenuePerUser`
**Type:** metric |
| ARPU
| Average revenue per active user (ARPU). The summary metric is for the time period selected. ARPU uses Total Revenue and includes AdMob estimated earnings.
**Field Name:** `averageRevenuePerUser`
**Type:** metric |
| First Time Purchasers
| The number of users that completed their first purchase event.
**Field Name:** `firstTimePurchasers`
**Type:** metric |
| First-Time Purchasers per New User
| The average number of first-time purchasers per new user.
**Field Name:** `firstTimePurchasersPerNewUser`
**Type:** metric |
| Gross Purchase Revenue
| The sum of revenue from purchases made in your app or site.
**Field Name:** `grossPurchaseRevenue`
**Type:** metric |
| Purchase-to-View Rate
| The number of users who purchased a product divided by the number of users who viewed the same product.
**Field Name:** `purchaseToViewRate`
**Type:** metric |
| Purchaser Rate
| The percentage of active users who made one or more purchase transactions.
**Field Name:** `purchaserRate`
**Type:** metric |
| Refund Amount
| The total refunded transaction revenues.
**Field Name:** `refundAmount`
**Type:** metric |
| Total Purchasers
| The number of users that logged purchase events for the time period selected.
**Field Name:** `totalPurchasers`
**Type:** metric |
| Total Revenue
| The sum of revenue from purchases, subscriptions, and advertising minus refunded transaction revenue.
**Field Name:** `totalRevenue`
**Type:** metric |
| Transactions per Purchaser
| The average number of transactions per purchaser.
**Field Name:** `transactionsPerPurchaser`
**Type:** metric |
### User Acquisition
| | |
| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| New Users
|
**Field Name:** `newUsers`
**Type:** metric |
| Active Users
|
**Field Name:** `activeUsers`
**Type:** metric |
| 1-day Active Users
| The number of distinct active users on your site or app within a 1 day period.
**Field Name:** `active1DayUsers`
**Type:** metric |
| 28-day Active Users
| The number of distinct active users on your site or app within a 28 day period.
**Field Name:** `active28DayUsers`
**Type:** metric |
| 7-day Active Users
| The number of distinct active users on your site or app within a 7 day period.
**Field Name:** `active7DayUsers`
**Type:** metric |
### Advertiser Performance
| | |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| Ad Clicks
|
**Field Name:** `advertiserAdClicks`
**Type:** metric |
| Ad Impressions
|
**Field Name:** `advertiserAdImpressions`
**Type:** metric |
| Ad Cost
|
**Field Name:** `advertiserAdCost`
**Type:** metric |
| Ad Cost per Click
|
**Field Name:** `advertiserAdCostPerClick`
**Type:** metric |
| Ad Cost per Conversion
|
**Field Name:** `advertiserAdCostPerConversion`
**Type:** metric |
| Return on Ad Spend
|
**Field Name:** `returnOnAdSpend`
**Type:** metric |
| Total Ad Revenue
|
**Field Name:** `totalAdRevenue`
**Type:** metric |
| Ad Unit Exposure
| The time that an ad unit was exposed to a user, in milliseconds.
**Field Name:** `adUnitExposure`
**Type:** metric |
| Ad Cost per Key Event
| Cost per key event is ad cost divided by key events.
**Field Name:** `advertiserAdCostPerKeyEvent`
**Type:** metric |
### App Performance
| | |
| -------------------------------- | ---------------------------------------------------------------------- |
| Crash Affected Users
|
**Field Name:** `crashAffectedUsers`
**Type:** metric |
| Crash Free Users Rate
|
**Field Name:** `crashFreeUsersRate`
**Type:** metric |
### Events
| | |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Event Count
|
**Field Name:** `eventCount`
**Type:** metric |
| Event Value
|
**Field Name:** `eventValue`
**Type:** metric |
| Event Count Per User
|
**Field Name:** `eventCountPerUser`
**Type:** metric |
| Events Per Session
|
**Field Name:** `eventsPerSession`
**Type:** metric |
| Key Events
| The count of key events. Marking an event as a key event affects reports from time of creation.
**Field Name:** `keyEvents`
**Type:** metric |
| Session Key Event Rate
| The percentage of sessions in which any key event was triggered.
**Field Name:** `sessionKeyEventRate`
**Type:** metric |
| User Key Event Rate
| The percentage of users who triggered any key event.
**Field Name:** `userKeyEventRate`
**Type:** metric |
### Store Items
| | |
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Item Revenue
|
**Field Name:** `itemRevenue`
**Type:** metric |
| Items Added To Cart
|
**Field Name:** `itemsAddedToCart`
**Type:** metric |
| Items Checked Out
|
**Field Name:** `itemsCheckedOut`
**Type:** metric |
| Items Purchased
|
**Field Name:** `itemsPurchased`
**Type:** metric |
| Items Viewed
|
**Field Name:** `itemsViewed`
**Type:** metric |
| Cart-to-View Rate
| The number of users who added a product(s) to their cart divided by the number of users who viewed the same product(s).
**Field Name:** `cartToViewRate`
**Type:** metric |
| Gross Item Revenue
| The total revenue from items only. Gross item revenue is the product of its price and quantity. Item revenue excludes tax and shipping values.
**Field Name:** `grossItemRevenue`
**Type:** metric |
| Item Discount Amount
| The monetary value of item discounts in eCommerce events.
**Field Name:** `itemDiscountAmount`
**Type:** metric |
| Item-list Click Events
| The number of times users clicked an item when it appeared in a list.
**Field Name:** `itemListClickEvents`
**Type:** metric |
| Item List Click Through Rate
| The number of users who selected a list divided by the number of users who viewed the same list.
**Field Name:** `itemListClickThroughRate`
**Type:** metric |
| Item-list View Events
| The number of times the item list was viewed.
**Field Name:** `itemListViewEvents`
**Type:** metric |
| Item Refund Amount
| The total refunded transaction revenue from items only.
**Field Name:** `itemRefundAmount`
**Type:** metric |
| Item View Events
| The number of times the item details were viewed.
**Field Name:** `itemViewEvents`
**Type:** metric |
| Items Clicked in List
| The number of units clicked in list for a single item.
**Field Name:** `itemsClickedInList`
**Type:** metric |
| Items Viewed in List
| The number of units viewed in list for a single item.
**Field Name:** `itemsViewedInList`
**Type:** metric |
### Promotions
| | |
| -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Promotion Clicks
|
**Field Name:** `promotionClicks`
**Type:** metric |
| Promotion Views
|
**Field Name:** `promotionViews`
**Type:** metric |
| Item Promotion Click Through Rate
| The number of users who selected a promotion divided by the number of users who viewed the same promotion.
**Field Name:** `itemPromotionClickThroughRate`
**Type:** metric |
| Items Clicked in Promotion
| The number of units clicked in promotion for a single item.
**Field Name:** `itemsClickedInPromotion`
**Type:** metric |
| Items Viewed in Promotion
| The number of units viewed in promotion for a single item.
**Field Name:** `itemsViewedInPromotion`
**Type:** metric |
### Screen/Page Views
| | |
| ---------------------------------------- | ----------------------------------------------------------------------------- |
| Screen/Page Views
|
**Field Name:** `screenPageViews`
**Type:** metric |
| Screen/Page Views Per Session
|
**Field Name:** `screenPageViewsPerSession`
**Type:** metric |
| Screen/Page Views Per User
|
**Field Name:** `screenPageViewsPerUser`
**Type:** metric |
### Scrolling
| | |
| ------------------------- | ----------------------------------------------------------------- |
| Scrolled Users
|
**Field Name:** `scrolledUsers`
**Type:** metric |
### Shipping and Tax
| | |
| -------------------------- | ------------------------------------------------------------------ |
| Shipping Amount
|
**Field Name:** `shippingAmount`
**Type:** metric |
| Tax Amount
|
**Field Name:** `taxAmount`
**Type:** metric |
### Publisher Ads
| | |
| ----------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| Publisher Ad Clicks
| The number of ad\_click events.
**Field Name:** `publisherAdClicks`
**Type:** metric |
| Publisher Ad Impressions
| The number of ad\_impression events.
**Field Name:** `publisherAdImpressions`
**Type:** metric |
***
## Related
Browse all platforms
Google Search Console metrics & dimensions
# Google Business Profile Metrics & Dimensions
Source: https://support.detrics.io/data-source/google-business-profile/fields
Complete reference for Google Business Profile dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Google Business Profile data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Google Business Profile data.
### Search Keywords
| | |
| ------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| Search Keyword
| Search keyword that triggered the business listing
**Field Name:** `search_keywords`
**Type:** dimension |
### Location
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| Location ID
| Unique identifier for the business location
**Field Name:** `location_id`
**Type:** dimension |
| Location Name
| Name of the business location
**Field Name:** `location_name`
**Type:** dimension |
| Location Name & ID
| Combined location name and ID
**Field Name:** `location_name_id`
**Type:** dimension |
| Location Description
| Description of the business location
**Field Name:** `location_description`
**Type:** dimension |
| Language Code
| Language code for the location listing
**Field Name:** `location_language_code`
**Type:** dimension |
| Store Code
| Store code for the business location
**Field Name:** `location_store_code`
**Type:** dimension |
| Primary Phone
| Primary phone number for the location
**Field Name:** `location_primary_phone`
**Type:** dimension |
| Additional Phones
| Additional phone numbers for the location
**Field Name:** `location_additional_phones`
**Type:** dimension |
| Regular Hours
| Regular business hours for the location
**Field Name:** `location_regular_hours`
**Type:** dimension |
| Special Hours
| Special business hours for the location
**Field Name:** `location_special_hours`
**Type:** dimension |
| Website URL
| Website URL for the business location
**Field Name:** `location_website_url`
**Type:** dimension |
| AdWords Phone
| Phone number used in AdWords ads
**Field Name:** `location_adwords_ad_phone`
**Type:** dimension |
| Labels
| Labels assigned to the location
**Field Name:** `location_labels`
**Type:** dimension |
| Coordinates
| Geographic coordinates of the location
**Field Name:** `location_coordinates`
**Type:** dimension |
| Latitude
| Latitude of the business location
**Field Name:** `location_latitude`
**Type:** dimension |
| Longitude
| Longitude of the business location
**Field Name:** `location_longitude`
**Type:** dimension |
| Attributes
| Business attributes for the location
**Field Name:** `location_attributes`
**Type:** dimension |
| Price Lists
| Price lists for the business location
**Field Name:** `location_price_lists`
**Type:** dimension |
| Place ID
| Google Place ID for the location
**Field Name:** `location_place_id`
**Type:** dimension |
| Maps URL
| Google Maps URL for the location
**Field Name:** `location_maps_url`
**Type:** dimension |
| Status
| Verification or listing status of the location
**Field Name:** `location_status`
**Type:** dimension |
| Opening Year
| Year the business opened
**Field Name:** `location_opening_year`
**Type:** dimension |
| Opening Month
| Month the business opened
**Field Name:** `location_opening_month`
**Type:** dimension |
| Opening Day
| Day the business opened
**Field Name:** `location_opening_day`
**Type:** dimension |
| Category ID
| Primary category ID for the location
**Field Name:** `location_category_id`
**Type:** dimension |
| Category Name
| Primary category name for the location
**Field Name:** `location_category_name`
**Type:** dimension |
| Additional Categories
| Additional business categories for the location
**Field Name:** `location_additional_categories`
**Type:** dimension |
| Address
| Street address of the location
**Field Name:** `location_address_lines`
**Type:** dimension |
| City
| City of the business location
**Field Name:** `location_address_locality`
**Type:** dimension |
| State/Province
| State or province of the business location
**Field Name:** `location_address_administrative_area`
**Type:** dimension |
| Postal Code
| Postal code of the business location
**Field Name:** `location_address_postal_code`
**Type:** dimension |
| Country
| Country of the business location
**Field Name:** `location_address_country`
**Type:** dimension |
| Service Area Business Type
| Type of service area business
**Field Name:** `location_service_area_business_type`
**Type:** dimension |
| Account ID
| Google Business Profile account ID
**Field Name:** `location_account_id`
**Type:** dimension |
| Account Name
| Google Business Profile account name
**Field Name:** `location_account_name`
**Type:** dimension |
### Reviews
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------ |
| Review ID
| Unique identifier for the review
**Field Name:** `review_id`
**Type:** dimension |
| Star Rating
| Star rating given by the reviewer
**Field Name:** `review_star_rating`
**Type:** dimension |
| Reviewer Name
| Name of the person who left the review
**Field Name:** `review_reviewer_name`
**Type:** dimension |
| Review Comment
| Text content of the review
**Field Name:** `review_comment`
**Type:** dimension |
| Reply Comment
| Business owner reply to the review
**Field Name:** `review_reply_comment`
**Type:** dimension |
| Review Created At
| Timestamp when the review was created
**Field Name:** `review_create_time`
**Type:** dimension |
| Review Created Date
| Date when the review was created
**Field Name:** `review_create_date`
**Type:** dimension |
| Review Updated At
| Timestamp when the review was last updated
**Field Name:** `review_update_time`
**Type:** dimension |
| Review Updated Date
| Date when the review was last updated
**Field Name:** `review_update_date`
**Type:** dimension |
| Reply Updated At
| Timestamp when the reply was last updated
**Field Name:** `review_reply_update_time`
**Type:** dimension |
### Posts
| | |
| ----------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| Post ID
| Unique identifier for the post
**Field Name:** `post_id`
**Type:** dimension |
| Post Language
| Language code of the post
**Field Name:** `post_language_code`
**Type:** dimension |
| Post Created At
| Timestamp when the post was created
**Field Name:** `post_create_time`
**Type:** dimension |
| Post Updated At
| Timestamp when the post was last updated
**Field Name:** `post_update_time`
**Type:** dimension |
| Post Summary
| Summary text of the post
**Field Name:** `post_summary`
**Type:** dimension |
| Call to Action Type
| Type of call to action on the post
**Field Name:** `post_call_to_action_type`
**Type:** dimension |
| Call to Action URL
| URL linked to the call to action
**Field Name:** `post_call_to_action_url`
**Type:** dimension |
| Post State
| Current state of the post (e.g., live, rejected)
**Field Name:** `post_state`
**Type:** dimension |
| Post Search URL
| URL to the post in Google Search
**Field Name:** `post_search_url`
**Type:** dimension |
| Post Topic Type
| Topic type of the post (e.g., standard, event, offer)
**Field Name:** `post_topic_type`
**Type:** dimension |
| Post Media ID
| Media ID attached to the post
**Field Name:** `post_media_id`
**Type:** dimension |
| Post Media Format
| Format of the media attached to the post
**Field Name:** `post_media_format`
**Type:** dimension |
| Post Media URL
| Google-hosted URL of the post media
**Field Name:** `post_media_google_url`
**Type:** dimension |
| Offer Coupon Code
| Coupon code for offer posts
**Field Name:** `post_offer_coupon_code`
**Type:** dimension |
| Offer Redeem URL
| URL to redeem the offer online
**Field Name:** `post_offer_redeem_online_url`
**Type:** dimension |
| Offer Terms & Conditions
| Terms and conditions for the offer
**Field Name:** `post_offer_terms_conditions`
**Type:** dimension |
| Event Title
| Title of the event post
**Field Name:** `post_event_title`
**Type:** dimension |
| Event Start Time
| Start time of the event
**Field Name:** `post_event_schedule_start_time`
**Type:** dimension |
| Event End Time
| End time of the event
**Field Name:** `post_event_schedule_end_time`
**Type:** dimension |
### Media
| | |
| ------------------------------ | ----------------------------------------------------------------------------------------------------------- |
| Media ID
| Unique identifier for the media item
**Field Name:** `media_id`
**Type:** dimension |
| Media Format
| Format of the media (e.g., photo, video)
**Field Name:** `media_format`
**Type:** dimension |
| Media Category
| Category of the media item
**Field Name:** `media_category`
**Type:** dimension |
| Media URL
| Google-hosted URL of the media
**Field Name:** `media_google_url`
**Type:** dimension |
| Media Thumbnail URL
| Thumbnail URL of the media
**Field Name:** `media_thumbnail_url`
**Type:** dimension |
| Media Width
| Width of the media in pixels
**Field Name:** `media_width`
**Type:** dimension |
| Media Height
| Height of the media in pixels
**Field Name:** `media_height`
**Type:** dimension |
### Customer Media
| | |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Customer Media ID
| Unique identifier for customer-uploaded media
**Field Name:** `customer_media_id`
**Type:** dimension |
| Customer Media Format
| Format of the customer-uploaded media
**Field Name:** `customer_media_format`
**Type:** dimension |
| Customer Media URL
| Google-hosted URL of the customer media
**Field Name:** `customer_media_google_url`
**Type:** dimension |
| Customer Media Thumbnail URL
| Thumbnail URL of the customer media
**Field Name:** `customer_media_thumbnail_url`
**Type:** dimension |
| Customer Media Width
| Width of the customer media in pixels
**Field Name:** `customer_media_width`
**Type:** dimension |
| Customer Media Height
| Height of the customer media in pixels
**Field Name:** `customer_media_height`
**Type:** dimension |
| Customer Media Profile Name
| Profile name of the customer who uploaded the media
**Field Name:** `customer_media_attribution_profile_name`
**Type:** dimension |
| Customer Media Profile Photo URL
| Profile photo URL of the customer who uploaded the media
**Field Name:** `customer_media_attribution_profile_photo_url`
**Type:** dimension |
| Customer Media Takedown URL
| URL to request takedown of customer media
**Field Name:** `customer_media_attribution_takedown_url`
**Type:** dimension |
| Customer Media Profile URL
| Profile URL of the customer who uploaded the media
**Field Name:** `customer_media_attribution_profile_url`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Google Business Profile campaigns.
### Performance
| | |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Views - Maps Desktop
| Number of views on Google Maps from desktop devices
**Field Name:** `views_maps_desktop`
**Type:** metric |
| Views - Maps Mobile
| Number of views on Google Maps from mobile devices
**Field Name:** `views_maps_mobile`
**Type:** metric |
| Views - Search Desktop
| Number of views on Google Search from desktop devices
**Field Name:** `views_search_desktop`
**Type:** metric |
| Views - Search Mobile
| Number of views on Google Search from mobile devices
**Field Name:** `views_search_mobile`
**Type:** metric |
| Views - Maps Total
| Total number of views on Google Maps
**Field Name:** `views_maps`
**Type:** metric |
| Views - Search Total
| Total number of views on Google Search
**Field Name:** `views_search`
**Type:** metric |
| Views - Total
| Total number of views across Maps and Search
**Field Name:** `views_total`
**Type:** metric |
### Actions
| | |
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Actions - Website Clicks
| Number of clicks to the business website
**Field Name:** `actions_website`
**Type:** metric |
| Actions - Phone Calls
| Number of phone call actions
**Field Name:** `actions_phone`
**Type:** metric |
| Actions - Driving Directions
| Number of driving direction requests
**Field Name:** `actions_driving_directions`
**Type:** metric |
| Actions - Messages
| Number of messages sent to the business
**Field Name:** `actions_messages`
**Type:** metric |
| Actions - Bookings
| Number of booking actions
**Field Name:** `actions_bookings`
**Type:** metric |
| Actions - Food Menu Clicks
| Number of food menu click actions
**Field Name:** `actions_food_menu_clicks`
**Type:** metric |
| Actions - Food Orders
| Number of food order actions
**Field Name:** `actions_food_orders`
**Type:** metric |
| Actions - Total
| Total number of actions taken on the listing
**Field Name:** `actions_total`
**Type:** metric |
### Search Keywords
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Search Impressions
| Number of impressions for the search keyword
**Field Name:** `search_impressions`
**Type:** metric |
### Reviews
| | |
| ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| Total Review Count
| Total number of reviews in the selected period
**Field Name:** `review_total_count`
**Type:** metric |
| Average Star Rating
| Average star rating of reviews in the selected period
**Field Name:** `review_avg_star_rating`
**Type:** metric |
| Total Review Count (Lifetime)
| Total number of reviews for the location (all time)
**Field Name:** `total_review_count`
**Type:** metric |
| Average Star Rating (Lifetime)
| Average star rating for the location (all time)
**Field Name:** `total_review_star_rating`
**Type:** metric |
### Posts
| | |
| --------------------- | ----------------------------------------------------------------------------- |
| Post Count
| Number of posts
**Field Name:** `post_count`
**Type:** metric |
### Media
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------ |
| Media Total Count
| Total number of media items
**Field Name:** `media_total_count`
**Type:** metric |
### Customer Media
| | |
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| Customer Media Total Count
| Total number of customer-uploaded media items
**Field Name:** `customer_media_total_count`
**Type:** metric |
***
## Related
Browse all platforms
Google Search Console metrics & dimensions
Google Analytics 4 metrics & dimensions
Facebook Insights metrics & dimensions
# Google DV360 Metrics & Dimensions
Source: https://support.detrics.io/data-source/google-dv360/fields
Complete reference for Google DV360 dimensions and metrics
**Last updated:** August 6, 2026
62 dimensions
114 metrics
This reference covers all available dimensions and metrics for Google DV360 data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Google DV360 data.
### Advertiser
| | |
| ---------------------------- | ------------------------------------------------------------------------------------ |
| Advertiser ID
|
**Field Name:** `ADVERTISER`
**Type:** dimension |
| Partner ID
|
**Field Name:** `PARTNER`
**Type:** dimension |
| Advertiser Name
|
**Field Name:** `ADVERTISER_NAME`
**Type:** dimension |
| Advertiser Status
|
**Field Name:** `ADVERTISER_INTEGRATION_STATUS`
**Type:** dimension |
| Currency Code
|
**Field Name:** `ADVERTISER_CURRENCY`
**Type:** dimension |
| Country
|
**Field Name:** `COUNTRY`
**Type:** dimension |
| Region
|
**Field Name:** `REGION_NAME`
**Type:** dimension |
| City
|
**Field Name:** `CITY_NAME`
**Type:** dimension |
### Campaign
| | |
| ------------------------ | ---------------------------------------------------------------------- |
| Campaign ID
|
**Field Name:** `MEDIA_PLAN`
**Type:** dimension |
| Campaign Name
|
**Field Name:** `MEDIA_PLAN_NAME`
**Type:** dimension |
### Floodlight
| | |
| -------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Floodlight Activity
| The name of the Floodlight activity that recorded the conversion.
**Field Name:** `FLOODLIGHT_ACTIVITY`
**Type:** dimension |
| Floodlight Activity Conversion Category
| The conversion category of the Floodlight activity (e.g. page view, purchase, begin checkout).
**Field Name:** `FLOODLIGHT_ACTIVITY_CONVERSION_CATEGORY`
**Type:** dimension |
### Creative
| | |
| ------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Creative ID
|
**Field Name:** `CREATIVE_ID`
**Type:** dimension |
| Creative Name
|
**Field Name:** `CREATIVE`
**Type:** dimension |
| Creative Preview URL
| Direct link to the creative image — the ad image for image/native creatives, or the video thumbnail for YouTube video creatives. Blank for third-party-served and hosted-video-file creatives. In the Data Warehouse this can be stored to your own bucket as a permanent image.
**Field Name:** `CREATIVE_PREVIEW_URL`
**Type:** dimension |
| Creative Preview Image
| The creative image wrapped in a Google Sheets =IMAGE() function so it renders inline in the sheet. Sheets only (not supported in Looker Studio).
**Field Name:** `CREATIVE_PREVIEW_IMAGE`
**Type:** dimension |
| Creative Landing Page URL
| The ad's click-through destination URL (including any UTM parameters). Blank for third-party creatives that carry the click in their tag.
**Field Name:** `CREATIVE_LANDING_PAGE_URL`
**Type:** dimension |
| Creative Hosting Source
| Whether the creative is hosted by DV360 or served by a third party (Hosted / Third Party).
**Field Name:** `CREATIVE_HOSTING_SOURCE`
**Type:** dimension |
| Creative Approval Status
| DV360 review/approval state for the creative (e.g. Approved Servable, Pending Servable, Rejected Not Servable).
**Field Name:** `CREATIVE_APPROVAL_STATUS`
**Type:** dimension |
| Creative Duration (s)
| Length of the video creative in seconds. Blank for non-video creatives.
**Field Name:** `CREATIVE_DURATION`
**Type:** dimension |
| Creative Created At
| When the creative was created in DV360.
**Field Name:** `CREATIVE_CREATE_TIME`
**Type:** dimension |
| Creative Updated At
| When the creative was last modified in DV360.
**Field Name:** `CREATIVE_UPDATE_TIME`
**Type:** dimension |
| Creative Status
|
**Field Name:** `CREATIVE_STATUS`
**Type:** dimension |
| Creative Type
|
**Field Name:** `CREATIVE_TYPE`
**Type:** dimension |
| Creative Height
|
**Field Name:** `CREATIVE_HEIGHT`
**Type:** dimension |
| Creative Width
|
**Field Name:** `CREATIVE_WIDTH`
**Type:** dimension |
| Creative Source
|
**Field Name:** `CREATIVE_SOURCE`
**Type:** dimension |
### Insertion Order
| | |
| ------------------------------------------ | --------------------------------------------------------------------------------------------------------- |
| Insertion Order ID
|
**Field Name:** `INSERTION_ORDER`
**Type:** dimension |
| Insertion Order Name
|
**Field Name:** `INSERTION_ORDER_NAME`
**Type:** dimension |
| Insertion Order Status
|
**Field Name:** `INSERTION_ORDER_STATUS`
**Type:** dimension |
| Other Insertion Order (Overlap)
| Only valid with Overlap metrics
**Field Name:** `OTHER_CAMPAIGN_NAME`
**Type:** dimension |
### Line Item
| | |
| ------------------------------------ | -------------------------------------------------------------------------------- |
| Line Item ID
|
**Field Name:** `LINE_ITEM`
**Type:** dimension |
| Line Item Name
|
**Field Name:** `LINE_ITEM_NAME`
**Type:** dimension |
| Line Item Start Date
|
**Field Name:** `LINE_ITEM_START_DATE`
**Type:** dimension |
| Line Item Budget
|
**Field Name:** `LINE_ITEM_BUDGET`
**Type:** dimension |
| Line Item Status
|
**Field Name:** `LINE_ITEM_STATUS`
**Type:** dimension |
| Line Item Daily Frequency
|
**Field Name:** `LINE_ITEM_DAILY_FREQUENCY`
**Type:** dimension |
| Line Item Type
|
**Field Name:** `LINE_ITEM_TYPE`
**Type:** dimension |
### Device
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Device Make
|
**Field Name:** `DEVICE_MAKE`
**Type:** dimension |
| Device Type
|
**Field Name:** `DEVICE_TYPE`
**Type:** dimension |
| Device Model
|
**Field Name:** `DEVICE_MODEL`
**Type:** dimension |
| Environment
| The inventory environment where the impression served (e.g. Web, App, Web optimized for device).
**Field Name:** `PAGE_LAYOUT`
**Type:** dimension |
| Other Device Type (Overlap)
|
**Field Name:** `OTHER_DEVICE_TYPE`
**Type:** dimension |
### Demographics (YouTube)
| | |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Age (YouTube)
| Viewer age bracket for YouTube & Partners inventory (18-24, 25-34, …, 65+, Unknown). Only available for YouTube line items.
**Field Name:** `TRUEVIEW_AGE`
**Type:** dimension |
| Gender (YouTube)
| Viewer gender for YouTube & Partners inventory (Female / Male / Unknown). Only available for YouTube line items.
**Field Name:** `TRUEVIEW_GENDER`
**Type:** dimension |
### Channel
| | |
| ----------------------- | ------------------------------------------------------------------- |
| Channel ID
|
**Field Name:** `CHANNEL_ID`
**Type:** dimension |
| Channel Name
|
**Field Name:** `CHANNEL_NAME`
**Type:** dimension |
| Channel Type
|
**Field Name:** `CHANNEL_TYPE`
**Type:** dimension |
### App Url
| | |
| --------------------------- | ----------------------------------------------------------------------- |
| APP URL
|
**Field Name:** `APP_URL`
**Type:** dimension |
| APP URL Excluded
|
**Field Name:** `APP_URL_EXCLUDED`
**Type:** dimension |
| APP URL ID
|
**Field Name:** `SITE_ID`
**Type:** dimension |
### Inventory
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------ |
| Inventory Source ID
|
**Field Name:** `INVENTORY_SOURCE_ID`
**Type:** dimension |
| Inventory Source Name
|
**Field Name:** `INVENTORY_SOURCE_NAME`
**Type:** dimension |
| Inventory Entity Status
|
**Field Name:** `INVENTORY_ENTITY_STATUS`
**Type:** dimension |
| Inventory Source Type
|
**Field Name:** `INVENTORY_SOURCE_TYPE`
**Type:** dimension |
| Inventory Source Product Type
|
**Field Name:** `INVENTORY_SOURCE_PRODUCT_TYPE`
**Type:** dimension |
| Inventory Exchange
|
**Field Name:** `INVENTORY_EXCHANGE`
**Type:** dimension |
| Inventory Rate Type
|
**Field Name:** `INVENTORY_RATE_TYPE`
**Type:** dimension |
| Inventory Rate Curency Code
|
**Field Name:** `INVENTORY_RATE_CURRENCY_CODE`
**Type:** dimension |
| Inventory Start Date
|
**Field Name:** `INVENTORY_START_DATE`
**Type:** dimension |
| Inventory End Date
|
**Field Name:** `INVENTORY_END_DATE`
**Type:** dimension |
| Inventory Update Time
|
**Field Name:** `INVENTORY_UPDATE_TIME`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Google DV360 campaigns.
### Budget
| | |
| ---------------------------------- | --------------------------------------------------------------------------------------- |
| Media Cost
|
**Field Name:** `METRIC_MEDIA_COST_ADVERTISER`
**Type:** metric |
| Media Cost (USD)
|
**Field Name:** `METRIC_MEDIA_COST_USD`
**Type:** metric |
| Profit
|
**Field Name:** `METRIC_PROFIT_ADVERTISER`
**Type:** metric |
| Profit (USD)
|
**Field Name:** `METRIC_PROFIT_USD`
**Type:** metric |
| Revenue
|
**Field Name:** `METRIC_REVENUE_ADVERTISER`
**Type:** metric |
| Revenue (USD)
|
**Field Name:** `METRIC_REVENUE_USD`
**Type:** metric |
| Total Media Cost
|
**Field Name:** `METRIC_TOTAL_MEDIA_COST_ADVERTISER`
**Type:** metric |
| Total Media Cost (USD)
|
**Field Name:** `METRIC_TOTAL_MEDIA_COST_USD`
**Type:** metric |
| Media Cost eCPA
|
**Field Name:** `METRIC_MEDIA_COST_ECPA_ADVERTISER`
**Type:** metric |
| Media Cost eCPA (USD)
|
**Field Name:** `METRIC_MEDIA_COST_ECPA_USD`
**Type:** metric |
| Media Cost eCPAPC
|
**Field Name:** `METRIC_MEDIA_COST_ECPAPC_ADVERTISER`
**Type:** metric |
| Media Cost eCPAPC (USD)
|
**Field Name:** `METRIC_MEDIA_COST_ECPAPC_USD`
**Type:** metric |
| Media Cost eCPAPV
|
**Field Name:** `METRIC_MEDIA_COST_ECPAPV_ADVERTISER`
**Type:** metric |
| Media Cost eCPAPV (USD)
|
**Field Name:** `METRIC_MEDIA_COST_ECPAPV_USD`
**Type:** metric |
| Revenue eCPC
|
**Field Name:** `METRIC_REVENUE_ECPC_ADVERTISER`
**Type:** metric |
| Revenue eCPC (USD)
|
**Field Name:** `METRIC_REVENUE_ECPC_USD`
**Type:** metric |
| Revenue eCPM
|
**Field Name:** `METRIC_REVENUE_ECPM_ADVERTISER`
**Type:** metric |
| Revenue eCPM (USD)
|
**Field Name:** `METRIC_REVENUE_ECPM_USD`
**Type:** metric |
### Interactions
| | |
| ----------------------------------------- | ----------------------------------------------------------------------------------------- |
| Clicks
|
**Field Name:** `METRIC_CLICKS`
**Type:** metric |
| Impressions
|
**Field Name:** `METRIC_IMPRESSIONS`
**Type:** metric |
| Total Conversions
|
**Field Name:** `METRIC_TOTAL_CONVERSIONS`
**Type:** metric |
| Post Click Conversion
|
**Field Name:** `METRIC_LAST_CLICKS`
**Type:** metric |
| Post View Conversions
|
**Field Name:** `METRIC_LAST_IMPRESSIONS`
**Type:** metric |
| Impressions to Conversion Rate
|
**Field Name:** `METRIC_IMPRESSIONS_TO_CONVERSION_RATE`
**Type:** metric |
### Performance
| | |
| ----------------------------------- | ------------------------------------------------------------------------------- |
| Billable Impressions
|
**Field Name:** `METRIC_BILLABLE_IMPRESSIONS`
**Type:** metric |
| Click-Through Rate (CTR)
|
**Field Name:** `METRIC_CTR`
**Type:** metric |
| Engagements
|
**Field Name:** `METRIC_ENGAGEMENTS`
**Type:** metric |
| Engagement Rate
|
**Field Name:** `METRIC_ENGAGEMENT_RATE`
**Type:** metric |
### Video
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| TrueView: Views
| TrueView views. A view is counted when someone chooses to watch or engage with your video ad in a YouTube & partners or Demand Gen line item, or watches the entire ad.
**Field Name:** `METRIC_TRUEVIEW_VIEWS`
**Type:** metric |
| Video Plays
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_PLAYS`
**Type:** metric |
| Video 25% Complete
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_FIRST_QUARTILE_COMPLETES`
**Type:** metric |
| Video 50% Complete
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_MIDPOINTS`
**Type:** metric |
| Video 75% Complete
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_THIRD_QUARTILE_COMPLETES`
**Type:** metric |
| Video 100% Complete
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_COMPLETIONS`
**Type:** metric |
| Video Pauses
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_PAUSES`
**Type:** metric |
| Video Mutes
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_MUTES`
**Type:** metric |
| Video Skips
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_SKIPS`
**Type:** metric |
| Video Full Screens
|
**Field Name:** `METRIC_RICH_MEDIA_VIDEO_FULL_SCREENS`
**Type:** metric |
### Reach
| | |
| ------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
| Unique Reach Click
|
**Field Name:** `METRIC_UNIQUE_REACH_CLICK_REACH`
**Type:** metric |
| Unique Reach Impression
|
**Field Name:** `METRIC_UNIQUE_REACH_IMPRESSION_REACH`
**Type:** metric |
| Unique Reach Average Impression Frequency
|
**Field Name:** `METRIC_UNIQUE_REACH_AVERAGE_IMPRESSION_FREQUENCY`
**Type:** metric |
| Unique Reach Average Viewable Impression Frequency
|
**Field Name:** `METRIC_UNIQUE_REACH_AVERAGE_VIEWABLE_IMPRESSION_FREQUENCY`
**Type:** metric |
| Unique Reach Incremental Total
|
**Field Name:** `METRIC_UNIQUE_REACH_INCREMENTAL_TOTAL_REACH`
**Type:** metric |
| Unique Total Reach
|
**Field Name:** `METRIC_UNIQUE_REACH_TOTAL_REACH`
**Type:** metric |
| Unique Viewable Impression Reach
|
**Field Name:** `METRIC_UNIQUE_REACH_VIEWABLE_IMPRESSION_REACH`
**Type:** metric |
### Overlap
| | |
| ---------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| Overlap Reach Click
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_CLICK_REACH`
**Type:** metric |
| Overlap Total Reach
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_TOTAL_REACH`
**Type:** metric |
| Overlap Total Reach Percent
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_TOTAL_REACH_PERCENT`
**Type:** metric |
| Overlap Viewable Impression Reach
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_VIEWABLE_IMPRESSION_REACH`
**Type:** metric |
| Overlap Viewable Impression Reach Percent
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_VIEWABLE_IMPRESSION_REACH_PERCENT`
**Type:** metric |
| Overlap Impression Reach Percent
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_IMPRESSION_REACH_PERCENT`
**Type:** metric |
| Overlap Click Reach Percent
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_CLICK_REACH_PERCENT`
**Type:** metric |
| Overlap Impression Reach
|
**Field Name:** `METRIC_VIRTUAL_PEOPLE_OVERLAP_IMPRESSION_REACH`
**Type:** metric |
### Inventory
| | |
| ------------------------- | ------------------------------------------------------------------------------------------------- |
| Inventory Rate
| Valid with inventory dimensions
**Field Name:** `INVENTORY_RATE`
**Type:** metric |
### Active View
| | |
| --------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| Average Viewable Time (Seconds)
|
**Field Name:** `METRIC_ACTIVE_VIEW_AVERAGE_VIEWABLE_TIME`
**Type:** metric |
| Custom Metric Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_CUSTOM_METRIC_MEASURABLE_IMPRESSIONS`
**Type:** metric |
| Custom Metric Viewable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_CUSTOM_METRIC_VIEWABLE_IMPRESSIONS`
**Type:** metric |
| Custom Metric Viewable Rate
|
**Field Name:** `METRIC_ACTIVE_VIEW_CUSTOM_METRIC_VIEWABLE_RATE`
**Type:** metric |
| Impression Distribution (Not Measurable)
|
**Field Name:** `METRIC_ACTIVE_VIEW_DISTRIBUTION_UNMEASURABLE`
**Type:** metric |
| Impression Distribution (Not Viewable)
|
**Field Name:** `METRIC_ACTIVE_VIEW_DISTRIBUTION_UNVIEWABLE`
**Type:** metric |
| Impression Distribution (Viewable)
|
**Field Name:** `METRIC_ACTIVE_VIEW_DISTRIBUTION_VIEWABLE`
**Type:** metric |
| Eligible Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_ELIGIBLE_IMPRESSIONS`
**Type:** metric |
| Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_MEASURABLE_IMPRESSIONS`
**Type:** metric |
| % Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PCT_MEASURABLE_IMPRESSIONS`
**Type:** metric |
| % Viewable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PCT_VIEWABLE_IMPRESSIONS`
**Type:** metric |
| % of Ever Muted
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_EVER_MUTED`
**Type:** metric |
| % Fully On-Screen 2 sec
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_FULLY_ON_SCREEN_2_SEC`
**Type:** metric |
| % Full-Screen
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_FULL_SCREEN`
**Type:** metric |
| % In Background
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_IN_BACKGROUND`
**Type:** metric |
| % of Ad Played
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_AD_PLAYED`
**Type:** metric |
| Not Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_UNMEASURABLE_IMPRESSIONS`
**Type:** metric |
| Not Viewable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_UNVIEWABLE_IMPRESSIONS`
**Type:** metric |
| Viewable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_VIEWABLE_IMPRESSIONS`
**Type:** metric |
### Active View: Audible
| | |
| ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| % of Audible (Unmuted) for 2 sec Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_2_SEC`
**Type:** metric |
| % of Audible (Unmuted) for 30 sec Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_30_SEC`
**Type:** metric |
| % of Audible and Background Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_AND_BACKGROUND`
**Type:** metric |
| % Audible Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_IMPRESSIONS`
**Type:** metric |
| % of Complete Audible Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_COMPLETE_AUDIBLE`
**Type:** metric |
| % of First Quartile Audible Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_FIRST_QUARTILE_AUDIBLE`
**Type:** metric |
| % of Midpoint Audible Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_MIDPOINT_AUDIBLE`
**Type:** metric |
| % Play Time Audible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_PLAY_TIME_AUDIBLE`
**Type:** metric |
| % of Third Quartile Audible Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_THIRD_QUARTILE_AUDIBLE`
**Type:** metric |
| Audible (Unmuted) for 2 sec Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_2_SEC_IMPRESSIONS`
**Type:** metric |
| Audible and Background Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_AND_BACKGROUND_IMPRESSIONS`
**Type:** metric |
| Audible & Fully On-Screen for Half of Duration (15 sec. cap) Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_FULLY_ON_SCREEN_HALF_OF_DURATION_IMPRESSIONS`
**Type:** metric |
| Audible & Fully On-Screen for Half of Duration (15 sec. cap) Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_FULLY_ON_SCREEN_HALF_OF_DURATION_MEASURABLE_IMPRESSIONS`
**Type:** metric |
| Audible & Fully On-Screen for Half of Duration (15 sec. cap) Rate
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_FULLY_ON_SCREEN_HALF_OF_DURATION_RATE`
**Type:** metric |
| Audible & Fully On-Screen for Half of Duration (TrueView) Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_FULLY_ON_SCREEN_HALF_OF_DURATION_TRUEVIEW_IMPRESSIONS`
**Type:** metric |
| Audible & Fully On-Screen for Half of Duration (TrueView) Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_FULLY_ON_SCREEN_HALF_OF_DURATION_TRUEVIEW_MEASURABLE_IMPRESSIONS`
**Type:** metric |
| Audible & Fully On-Screen for Half of Duration (TrueView) Rate
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_FULLY_ON_SCREEN_HALF_OF_DURATION_TRUEVIEW_RATE`
**Type:** metric |
| Audible Measurable Impressions
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_MEASURABLE_IMPRESSIONS`
**Type:** metric |
### Active View: Audible & Visible
| | |
| -------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| % Audible and Visible at Start
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_VISIBLE_AT_START`
**Type:** metric |
| % Audible and Visible at First Quartile
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_VISIBLE_FIRST_QUAR`
**Type:** metric |
| % Audible and Visible at Completion
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_VISIBLE_ON_COMPLETE`
**Type:** metric |
| % Audible and Visible at Midpoint
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_VISIBLE_SECOND_QUAR`
**Type:** metric |
| % Audible and Visible at Third Quartile
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_AUDIBLE_VISIBLE_THIRD_QUAR`
**Type:** metric |
| % of Completed Impressions Audible and Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_COMPLETED_IMPRESSIONS_AUDIBLE_AND_VISIBLE`
**Type:** metric |
| % of First Quartile Impressions Audible and Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_FIRST_QUARTILE_IMPRESSIONS_AUDIBLE_AND_VISIBLE`
**Type:** metric |
| % of Midpoint Impressions Audible and Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_MIDPOINT_IMPRESSIONS_AUDIBLE_AND_VISIBLE`
**Type:** metric |
| % of Third Quartile Impressions Audible and Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_THIRD_QUARTILE_IMPRESSIONS_AUDIBLE_AND_VISIBLE`
**Type:** metric |
| % Play Time Audible and Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_PLAY_TIME_AUDIBLE_AND_VISIBLE`
**Type:** metric |
| Impressions Audible and Visible at Completion
|
**Field Name:** `METRIC_ACTIVE_VIEW_AUDIBLE_VISIBLE_ON_COMPLETE_IMPRESSIONS`
**Type:** metric |
### Active View: Visible
| | |
| -------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
| % of Completed Impressions Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_COMPLETED_IMPRESSIONS_VISIBLE`
**Type:** metric |
| % of First Quartile Impressions Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_FIRST_QUARTILE_IMPRESSIONS_VISIBLE`
**Type:** metric |
| % of Midpoint Impressions Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_MIDPOINT_IMPRESSIONS_VISIBLE`
**Type:** metric |
| % of Third Quartile Impressions Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_OF_THIRD_QUARTILE_IMPRESSIONS_VISIBLE`
**Type:** metric |
| % Play Time Visible
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_PLAY_TIME_VISIBLE`
**Type:** metric |
| % Visible 10 Seconds
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_VIEWABLE_FOR_TIME_THRESHOLD`
**Type:** metric |
| % Visible at Start
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_VISIBLE_AT_START`
**Type:** metric |
| % Visible at First Quartile
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_VISIBLE_FIRST_QUAR`
**Type:** metric |
| % Visible at Completion
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_VISIBLE_ON_COMPLETE`
**Type:** metric |
| % Visible at Midpoint
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_VISIBLE_SECOND_QUAR`
**Type:** metric |
| % Visible at Third Quartile
|
**Field Name:** `METRIC_ACTIVE_VIEW_PERCENT_VISIBLE_THIRD_QUAR`
**Type:** metric |
| Impressions Visible 10 Seconds
|
**Field Name:** `METRIC_ACTIVE_VIEW_VIEWABLE_FOR_TIME_THRESHOLD`
**Type:** metric |
***
## Related
Browse all platforms
Google Ads metrics & dimensions
Meta Ads metrics & dimensions
TikTok Ads metrics & dimensions
# Google Merchant Center Metrics & Dimensions
Source: https://support.detrics.io/data-source/google-merchant-center/fields
Complete reference for Google Merchant Center dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Google Merchant Center data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Google Merchant Center data.
### Account
| | |
| ----------------------- | ---------------------------------------------------------------------------------------------- |
| Account ID
| Merchant Center account ID
**Field Name:** `accountId`
**Type:** dimension |
| Account Name
| Merchant Center account name
**Field Name:** `accountName`
**Type:** dimension |
### Performance
| | |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Product ID
| Unique identifier of the product offer
**Field Name:** `offerId`
**Type:** dimension |
| Title
| Product title from the performance report
**Field Name:** `title`
**Type:** dimension |
| Brand
| Product brand
**Field Name:** `brand`
**Type:** dimension |
| Program
| Shopping program (e.g., Free listings, Shopping ads)
**Field Name:** `program`
**Type:** dimension |
| Customer Country Code
| Country code of the customer
**Field Name:** `customerCountryCode`
**Type:** dimension |
| Currency Code
| Currency code for monetary values
**Field Name:** `currencyCode`
**Type:** dimension |
### Product Category
| | |
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------ |
| Product Category (1st Level)
| Top-level Google product category
**Field Name:** `productCategoryL1`
**Type:** dimension |
| Product Category (2nd Level)
| Second-level Google product category
**Field Name:** `productCategoryL2`
**Type:** dimension |
| Product Category (3rd Level)
| Third-level Google product category
**Field Name:** `productCategoryL3`
**Type:** dimension |
| Product Category (4th Level)
| Fourth-level Google product category
**Field Name:** `productCategoryL4`
**Type:** dimension |
| Product Category (5th Level)
| Fifth-level Google product category
**Field Name:** `productCategoryL5`
**Type:** dimension |
### Product Type
| | |
| ----------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Product Type (1st Level)
| Top-level product type defined by the merchant
**Field Name:** `productTypeL1`
**Type:** dimension |
| Product Type (2nd Level)
| Second-level product type defined by the merchant
**Field Name:** `productTypeL2`
**Type:** dimension |
| Product Type (3rd Level)
| Third-level product type defined by the merchant
**Field Name:** `productTypeL3`
**Type:** dimension |
| Product Type (4th Level)
| Fourth-level product type defined by the merchant
**Field Name:** `productTypeL4`
**Type:** dimension |
| Product Type (5th Level)
| Fifth-level product type defined by the merchant
**Field Name:** `productTypeL5`
**Type:** dimension |
### Custom Label
| | |
| ------------------------- | -------------------------------------------------------------------------------------------------------- |
| Custom Label 0
| Custom label 0 for Shopping campaigns
**Field Name:** `customLabel0`
**Type:** dimension |
| Custom Label 1
| Custom label 1 for Shopping campaigns
**Field Name:** `customLabel1`
**Type:** dimension |
| Custom Label 2
| Custom label 2 for Shopping campaigns
**Field Name:** `customLabel2`
**Type:** dimension |
| Custom Label 3
| Custom label 3 for Shopping campaigns
**Field Name:** `customLabel3`
**Type:** dimension |
| Custom Label 4
| Custom label 4 for Shopping campaigns
**Field Name:** `customLabel4`
**Type:** dimension |
### Products
| | |
| ---------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| Product ID
| Unique product identifier in Merchant Center
**Field Name:** `productId`
**Type:** dimension |
| Item ID
| Item ID as defined in the product feed
**Field Name:** `itemId`
**Type:** dimension |
| Title
| Product title from the feed
**Field Name:** `productTitle`
**Type:** dimension |
| Description
| Product description from the feed
**Field Name:** `productDescription`
**Type:** dimension |
| Product Link
| URL to the product landing page
**Field Name:** `productLink`
**Type:** dimension |
| Image Link
| URL to the product image
**Field Name:** `imageLink`
**Type:** dimension |
| Brand
| Product brand from the feed
**Field Name:** `productBrand`
**Type:** dimension |
| Condition
| Product condition (new, refurbished, used)
**Field Name:** `condition`
**Type:** dimension |
| Availability
| Product availability status
**Field Name:** `availability`
**Type:** dimension |
| Feed Label
| Feed label for the product
**Field Name:** `feedLabel`
**Type:** dimension |
| Language
| Product language
**Field Name:** `language`
**Type:** dimension |
| Source
| Product data source
**Field Name:** `source`
**Type:** dimension |
| MPN
| Manufacturer Part Number
**Field Name:** `mpn`
**Type:** dimension |
| GTIN
| Global Trade Item Number
**Field Name:** `gtin`
**Type:** dimension |
| Product Type
| Merchant-defined product type
**Field Name:** `productType`
**Type:** dimension |
| Target Country
| Target country for the product listing
**Field Name:** `targetCountry`
**Type:** dimension |
| Google Product Category
| Google product category assigned to the product
**Field Name:** `googleProductCategory`
**Type:** dimension |
| Item Group ID
| ID for grouping product variants
**Field Name:** `itemGroupId`
**Type:** dimension |
| Shipping Label
| Shipping label for the product
**Field Name:** `shippingLabel`
**Type:** dimension |
| Channel
| Sales channel (online, local)
**Field Name:** `channel`
**Type:** dimension |
### Product Custom Label
| | |
| ------------------------- | ---------------------------------------------------------------------------------------------------------- |
| Custom Label 0
| Custom label 0 from product feed
**Field Name:** `productCustomLabel0`
**Type:** dimension |
| Custom Label 1
| Custom label 1 from product feed
**Field Name:** `productCustomLabel1`
**Type:** dimension |
| Custom Label 2
| Custom label 2 from product feed
**Field Name:** `productCustomLabel2`
**Type:** dimension |
| Custom Label 3
| Custom label 3 from product feed
**Field Name:** `productCustomLabel3`
**Type:** dimension |
| Custom Label 4
| Custom label 4 from product feed
**Field Name:** `productCustomLabel4`
**Type:** dimension |
### Product Pricing
| | |
| ----------------------- | ---------------------------------------------------------------------------------------------- |
| Price
| Product price
**Field Name:** `price`
**Type:** dimension |
| Currency
| Product price currency
**Field Name:** `productCurrency`
**Type:** dimension |
| Tax Category
| Tax category for the product
**Field Name:** `taxCategory`
**Type:** dimension |
### Diagnostics
| | |
| --------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Product ID
| Product ID in the diagnostics report
**Field Name:** `diagnosticProductId`
**Type:** dimension |
| Title
| Product title in the diagnostics report
**Field Name:** `diagnosticTitle`
**Type:** dimension |
| Link
| Product link in the diagnostics report
**Field Name:** `diagnosticLink`
**Type:** dimension |
| Destination
| Product listing destination
**Field Name:** `destination`
**Type:** dimension |
| Status
| Product approval status
**Field Name:** `status`
**Type:** dimension |
| Approved Countries
| Countries where the product is approved
**Field Name:** `approvedCountries`
**Type:** dimension |
| Pending Countries
| Countries where the product is pending review
**Field Name:** `pendingCountries`
**Type:** dimension |
| Disapproved Countries
| Countries where the product is disapproved
**Field Name:** `disapprovedCountries`
**Type:** dimension |
| Creation Date
| Date the product was created
**Field Name:** `creationDate`
**Type:** dimension |
| Last Update Date
| Date the product was last updated
**Field Name:** `lastUpdateDate`
**Type:** dimension |
| Google Expiration Date
| Date the product will expire in Google
**Field Name:** `googleExpirationDate`
**Type:** dimension |
### Product Issues
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| Issue Code
| Code identifying the product issue
**Field Name:** `issueCode`
**Type:** dimension |
| Issue Servability
| Severity of the product issue
**Field Name:** `issueServability`
**Type:** dimension |
| Issue Resolution
| How the issue can be resolved
**Field Name:** `issueResolution`
**Type:** dimension |
| Issue Attribute Name
| Product attribute that caused the issue
**Field Name:** `issueAttributeName`
**Type:** dimension |
| Issue Destination
| Destination affected by the issue
**Field Name:** `issueDestination`
**Type:** dimension |
| Issue Description
| Description of the product issue
**Field Name:** `issueDescription`
**Type:** dimension |
| Issue Detail
| Detailed information about the issue
**Field Name:** `issueDetail`
**Type:** dimension |
| Issue Documentation
| Link to documentation about resolving the issue
**Field Name:** `issueDocumentation`
**Type:** dimension |
| Issue Applicable Countries
| Countries affected by the issue
**Field Name:** `issueApplicableCountries`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Google Merchant Center campaigns.
### Performance
| | |
| --------------------------- | -------------------------------------------------------------------------------------------------------- |
| Impressions
| Number of times products were shown
**Field Name:** `impressions`
**Type:** metric |
| Clicks
| Number of clicks on product listings
**Field Name:** `clicks`
**Type:** metric |
| CTR
| Click-through rate (clicks / impressions)
**Field Name:** `ctr`
**Type:** metric |
| Conversions
| Number of conversions
**Field Name:** `conversions`
**Type:** metric |
| Conversion Rate
| Conversion rate (conversions / clicks)
**Field Name:** `conversionRate`
**Type:** metric |
| Conversion Value
| Total value of conversions
**Field Name:** `conversionValue`
**Type:** metric |
### E-Commerce
| | |
| ----------------------------- | ----------------------------------------------------------------------------------------------------- |
| Orders
| Number of orders
**Field Name:** `orders`
**Type:** metric |
| Ordered Items
| Number of items ordered
**Field Name:** `orderedItems`
**Type:** metric |
| Ordered Item Sales
| Total sales from ordered items
**Field Name:** `orderedItemSales`
**Type:** metric |
| Shipped Items
| Number of items shipped
**Field Name:** `shippedItems`
**Type:** metric |
| Shipped Orders
| Number of orders shipped
**Field Name:** `shippedOrders`
**Type:** metric |
| Unshipped Items
| Number of items not yet shipped
**Field Name:** `unshippedItems`
**Type:** metric |
| Unshipped Orders
| Number of orders not yet shipped
**Field Name:** `unshippedOrders`
**Type:** metric |
| Returned Items
| Number of items returned
**Field Name:** `returnedItems`
**Type:** metric |
| Return Rate
| Rate of returned items
**Field Name:** `returnRate`
**Type:** metric |
| Average Order Size
| Average number of items per order
**Field Name:** `averageOrderSize`
**Type:** metric |
### Products
| | |
| ----------------------------- | -------------------------------------------------------------------------------------------------------- |
| Number of Products
| Total number of products in the feed
**Field Name:** `numberOfProducts`
**Type:** metric |
### Diagnostics
| | |
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| Number of Products
| Number of products with diagnostic information
**Field Name:** `numberOfDiagnosticProducts`
**Type:** metric |
***
## Related
Browse all platforms
Klaviyo metrics & dimensions
HubSpot metrics & dimensions
Mailchimp metrics & dimensions
# Google Search Console Metrics & Dimensions
Source: https://support.detrics.io/data-source/google-search-console/fields
Complete reference for Google Search Console dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Google Search Console data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Google Search Console data.
### Most Used
| | |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Account URL
|
**Field Name:** `SITE_URL`
**Type:** dimension |
| Device
|
**Field Name:** `DEVICE`
**Type:** dimension |
| Page
|
**Field Name:** `PAGE`
**Type:** dimension |
| Country
|
**Field Name:** `COUNTRY`
**Type:** dimension |
| Query
|
**Field Name:** `QUERY`
**Type:** dimension |
| Search Type
| Where the impression happened: web search, image search, video search, news, Google Discover, or Google News. Adds one row per search type.
**Field Name:** `SEARCH_TYPE`
**Type:** dimension |
### Single Selection Metric
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Search Appearance
| Only compatible with the 'Account URL' metric and 'No Time Grouping'. It can also be used as a filter combined with other dimensions.
**Field Name:** `SEARCH_APPEARANCE`
**Type:** dimension |
### Page Indexing
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Inspected URL
| The page inspected via the URL Inspection API. The top pages of your property (by clicks in the selected period) are inspected, up to 100 per query.
**Field Name:** `INSPECTED_URL`
**Type:** dimension |
| Index Verdict
| Overall index status verdict for the page: PASS, NEUTRAL, or FAIL.
**Field Name:** `INDEX_VERDICT`
**Type:** dimension |
| Coverage State
| Whether the page is indexed and how, e.g. 'Submitted and indexed' or 'Crawled - currently not indexed'.
**Field Name:** `COVERAGE_STATE`
**Type:** dimension |
| Robots.txt State
| Whether robots.txt allows Google to crawl the page.
**Field Name:** `ROBOTS_TXT_STATE`
**Type:** dimension |
| Indexing State
| Whether indexing is allowed for the page (e.g. blocked by a noindex directive).
**Field Name:** `INDEXING_STATE`
**Type:** dimension |
| Last Crawl Time
| When Googlebot last crawled the page.
**Field Name:** `LAST_CRAWL_TIME`
**Type:** dimension |
| Page Fetch State
| Whether Google could fetch the page on its last crawl (e.g. SUCCESSFUL, SOFT\_404, ACCESS\_DENIED).
**Field Name:** `PAGE_FETCH_STATE`
**Type:** dimension |
| Google Canonical
| The canonical URL Google selected for the page.
**Field Name:** `GOOGLE_CANONICAL`
**Type:** dimension |
| User Canonical
| The canonical URL declared by your page.
**Field Name:** `USER_CANONICAL`
**Type:** dimension |
| Canonical Mismatch
| True when Google selected a different canonical than the one your page declares — a common technical SEO issue.
**Field Name:** `CANONICAL_MISMATCH`
**Type:** dimension |
| Crawled As
| The user agent Google used to crawl the page (MOBILE or DESKTOP).
**Field Name:** `CRAWLED_AS`
**Type:** dimension |
| Referring Sitemaps
| Sitemaps that list this page, as reported by Google.
**Field Name:** `REFERRING_SITEMAPS`
**Type:** dimension |
### Rich Results
| | |
| ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Rich Results Verdict
| Overall structured data verdict for the page: PASS means all rich result items are valid, FAIL means at least one has errors. Empty when the page has no structured data.
**Field Name:** `RICH_RESULTS_VERDICT`
**Type:** dimension |
| Rich Result Type
| Type of rich result detected on the page: Breadcrumbs, Review snippets, Videos, FAQ, etc. Same types as the Enhancements reports in Google Search Console.
**Field Name:** `RICH_RESULT_TYPE`
**Type:** dimension |
| Rich Result Item
| Name of the individual structured data item detected on the page.
**Field Name:** `RICH_RESULT_ITEM_NAME`
**Type:** dimension |
| Rich Result Issue
| Validation issue found in the structured data item, e.g. 'Missing field "uploadDate"'. Empty when the item is valid.
**Field Name:** `RICH_RESULT_ISSUE`
**Type:** dimension |
| Rich Result Issue Severity
| Severity of the issue: ERROR makes the item invalid for rich results, WARNING does not.
**Field Name:** `RICH_RESULT_ISSUE_SEVERITY`
**Type:** dimension |
### Sitemaps
| | |
| ---------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| Sitemap Path
| URL of the sitemap submitted to Google Search Console.
**Field Name:** `SITEMAP_PATH`
**Type:** dimension |
| Sitemap Type
| Type of the sitemap: 'Sitemap index' or 'sitemap'.
**Field Name:** `SITEMAP_TYPE`
**Type:** dimension |
| Sitemap Is Pending
| True while Google has not yet processed the submitted sitemap.
**Field Name:** `SITEMAP_IS_PENDING`
**Type:** dimension |
| Sitemap Last Submitted
| When the sitemap was last submitted to Google.
**Field Name:** `SITEMAP_LAST_SUBMITTED`
**Type:** dimension |
| Sitemap Last Downloaded
| When Google last downloaded the sitemap.
**Field Name:** `SITEMAP_LAST_DOWNLOADED`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Google Search Console campaigns.
### Most Used
| | |
| ---------------------- | --------------------------------------------------------------- |
| CTR
|
**Field Name:** `ctr`
**Type:** metric |
| Impressions
|
**Field Name:** `impressions`
**Type:** metric |
| Position
|
**Field Name:** `position`
**Type:** metric |
| Clicks
|
**Field Name:** `clicks`
**Type:** metric |
### Rich Results
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Rich Result Items
| Number of structured data items Google detected (breadcrumbs, review snippets, videos, etc.).
**Field Name:** `richResultItems`
**Type:** metric |
| Rich Result Errors
| Number of ERROR-severity structured data issues. Items with errors are not eligible for rich results in Google Search.
**Field Name:** `richResultErrors`
**Type:** metric |
| Rich Result Warnings
| Number of WARNING-severity structured data issues.
**Field Name:** `richResultWarnings`
**Type:** metric |
### Sitemaps
| | |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| Sitemap Errors
| Number of errors Google found while processing the sitemap.
**Field Name:** `sitemapErrors`
**Type:** metric |
| Sitemap Warnings
| Number of warnings Google found while processing the sitemap.
**Field Name:** `sitemapWarnings`
**Type:** metric |
| Sitemap Submitted URLs
| Number of URLs submitted in the sitemap.
**Field Name:** `sitemapSubmittedUrls`
**Type:** metric |
***
## Related
Browse all platforms
Google Analytics 4 metrics & dimensions
# HubSpot Metrics & Dimensions
Source: https://support.detrics.io/data-source/hubspot/fields
Complete reference for HubSpot CRM dimensions and metrics
**Last updated:** August 6, 2026
189 dimensions
105 metrics
This reference covers all available dimensions and metrics for HubSpot data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your HubSpot data.
### Account
| | |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Account ID
| The unique identifier for the HubSpot account
**Field Name:** `accountId`
**Type:** dimension |
| Account name
| The name of the HubSpot account
**Field Name:** `accountName`
**Type:** dimension |
| Account timezone
| The timezone configured for the HubSpot account
**Field Name:** `accountTimezone`
**Type:** dimension |
| Account currency
| The default currency for the HubSpot account
**Field Name:** `accountCurrency`
**Type:** dimension |
### Contact
| | |
| ----------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Contact ID
| The unique identifier for the contact in HubSpot
**Field Name:** `contactId`
**Type:** dimension |
| Contact email
| The primary email address of the contact
**Field Name:** `contactEmail`
**Type:** dimension |
| Contact first name
| The first name of the contact
**Field Name:** `contactFirstName`
**Type:** dimension |
| Contact last name
| The last name of the contact
**Field Name:** `contactLastName`
**Type:** dimension |
| Contact full name
| The full name of the contact (first + last)
**Field Name:** `contactFullName`
**Type:** dimension |
| Contact phone
| The primary phone number of the contact
**Field Name:** `contactPhone`
**Type:** dimension |
| Contact mobile phone
| The mobile phone number of the contact
**Field Name:** `contactMobilePhone`
**Type:** dimension |
| Contact company
| The company name associated with the contact
**Field Name:** `contactCompany`
**Type:** dimension |
| Contact job title
| The job title of the contact
**Field Name:** `contactJobTitle`
**Type:** dimension |
| Contact lifecycle stage
| The lifecycle stage of the contact (e.g., subscriber, lead, customer)
**Field Name:** `contactLifecycleStage`
**Type:** dimension |
| Contact lead status
| The lead status of the contact (e.g., new, open, in progress)
**Field Name:** `contactLeadStatus`
**Type:** dimension |
| Contact city
| The city from the contact's address
**Field Name:** `contactCity`
**Type:** dimension |
| Contact state
| The state or region from the contact's address
**Field Name:** `contactState`
**Type:** dimension |
| Contact country
| The country from the contact's address
**Field Name:** `contactCountry`
**Type:** dimension |
| Contact zip
| The zip or postal code from the contact's address
**Field Name:** `contactZip`
**Type:** dimension |
| Contact owner ID
| The ID of the HubSpot user who owns this contact
**Field Name:** `contactOwnerId`
**Type:** dimension |
| Contact owner name
| The name of the HubSpot user who owns this contact
**Field Name:** `contactOwnerName`
**Type:** dimension |
| Contact create date
| The date the contact was created in HubSpot
**Field Name:** `contactCreateDate`
**Type:** dimension |
| Contact last modified date
| The date the contact was last modified
**Field Name:** `contactLastModifiedDate`
**Type:** dimension |
| Contact last activity date
| The date of the last activity on the contact
**Field Name:** `contactLastActivityDate`
**Type:** dimension |
| Contact source
| The original traffic source that created the contact (e.g., organic, paid, referral)
**Field Name:** `contactSource`
**Type:** dimension |
| Contact source detail 1
| Additional detail about the contact source
**Field Name:** `contactSourceData1`
**Type:** dimension |
| Contact source detail 2
| Further detail about the contact source
**Field Name:** `contactSourceData2`
**Type:** dimension |
| Contact subscriber date
| The date the contact entered the subscriber lifecycle stage
**Field Name:** `contactSubscriberDate`
**Type:** dimension |
| Contact lead date
| The date the contact entered the lead lifecycle stage
**Field Name:** `contactLeadDate`
**Type:** dimension |
| Contact MQL date
| The date the contact became a marketing qualified lead
**Field Name:** `contactMarketingQualifiedLeadDate`
**Type:** dimension |
| Contact SQL date
| The date the contact became a sales qualified lead
**Field Name:** `contactSalesQualifiedLeadDate`
**Type:** dimension |
| Contact opportunity date
| The date the contact entered the opportunity stage
**Field Name:** `contactOpportunityDate`
**Type:** dimension |
| Contact customer date
| The date the contact became a customer
**Field Name:** `contactCustomerDate`
**Type:** dimension |
| Contact evangelist date
| The date the contact entered the evangelist lifecycle stage
**Field Name:** `contactEvangelistDate`
**Type:** dimension |
| Contact close date
| The date the contact record was closed
**Field Name:** `contactCloseDate`
**Type:** dimension |
| Contact first conversion
| The name of the first form or event that converted this contact
**Field Name:** `contactFirstConversion`
**Type:** dimension |
| Contact first conversion date
| The date of the first form or event that converted this contact
**Field Name:** `contactFirstConversionDate`
**Type:** dimension |
| Contact recent conversion
| The name of the most recent form or event that converted this contact
**Field Name:** `contactRecentConversion`
**Type:** dimension |
| Contact recent conversion date
| The date of the most recent form or event that converted this contact
**Field Name:** `contactRecentConversionDate`
**Type:** dimension |
| Contact first page seen
| The URL of the first page the contact visited on your site
**Field Name:** `contactFirstPageSeen`
**Type:** dimension |
| Contact last page seen
| The URL of the last page the contact visited on your site
**Field Name:** `contactLastPageSeen`
**Type:** dimension |
| Contact first referrer
| The URL of the first website that referred the contact to your site
**Field Name:** `contactFirstReferrer`
**Type:** dimension |
| Contact last referrer
| The URL of the last website that referred the contact to your site
**Field Name:** `contactLastReferrer`
**Type:** dimension |
| Contact IP country
| The country determined by the contact's IP address
**Field Name:** `contactIpCountry`
**Type:** dimension |
### Company
| | |
| ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Company ID
| The unique identifier for the company in HubSpot
**Field Name:** `companyId`
**Type:** dimension |
| Company name
| The name of the company
**Field Name:** `companyName`
**Type:** dimension |
| Company domain
| The primary domain name of the company
**Field Name:** `companyDomain`
**Type:** dimension |
| Company industry
| The industry the company belongs to
**Field Name:** `companyIndustry`
**Type:** dimension |
| Company type
| The type of company (e.g., prospect, partner, reseller, vendor)
**Field Name:** `companyType`
**Type:** dimension |
| Company city
| The city from the company's address
**Field Name:** `companyCity`
**Type:** dimension |
| Company state
| The state or region from the company's address
**Field Name:** `companyState`
**Type:** dimension |
| Company country
| The country from the company's address
**Field Name:** `companyCountry`
**Type:** dimension |
| Company zip
| The zip or postal code from the company's address
**Field Name:** `companyZip`
**Type:** dimension |
| Company phone
| The primary phone number of the company
**Field Name:** `companyPhone`
**Type:** dimension |
| Company website
| The website URL of the company
**Field Name:** `companyWebsite`
**Type:** dimension |
| Company lifecycle stage
| The lifecycle stage of the company
**Field Name:** `companyLifecycleStage`
**Type:** dimension |
| Company lead status
| The lead status of the company
**Field Name:** `companyLeadStatus`
**Type:** dimension |
| Company owner ID
| The ID of the HubSpot user who owns this company
**Field Name:** `companyOwnerId`
**Type:** dimension |
| Company owner name
| The name of the HubSpot user who owns this company
**Field Name:** `companyOwnerName`
**Type:** dimension |
| Company create date
| The date the company was created in HubSpot
**Field Name:** `companyCreateDate`
**Type:** dimension |
| Company last modified date
| The date the company was last modified
**Field Name:** `companyLastModifiedDate`
**Type:** dimension |
| Company last activity date
| The date of the last activity on the company
**Field Name:** `companyLastActivityDate`
**Type:** dimension |
| Company source
| The original traffic source that created the company
**Field Name:** `companySource`
**Type:** dimension |
| Company description
| A text description of the company
**Field Name:** `companyDescription`
**Type:** dimension |
| Company address
| The street address of the company
**Field Name:** `companyAddress`
**Type:** dimension |
| Company close date
| The date the company record was closed
**Field Name:** `companyCloseDate`
**Type:** dimension |
| Company last contacted date
| The date the company was last contacted
**Field Name:** `companyLastContactedDate`
**Type:** dimension |
| Company next activity date
| The date of the next scheduled activity on the company
**Field Name:** `companyNextActivityDate`
**Type:** dimension |
| Company last activity date (direct)
| The date of the last direct activity on the company record
**Field Name:** `companyLastActivityDateDirect`
**Type:** dimension |
| Company owner assigned date
| The date the current owner was assigned to the company
**Field Name:** `companyOwnerAssignedDate`
**Type:** dimension |
| Company first contact create date
| The create date of the first contact associated with the company
**Field Name:** `companyFirstContactCreateDate`
**Type:** dimension |
| Company first deal create date
| The create date of the first deal associated with the company
**Field Name:** `companyFirstDealCreateDate`
**Type:** dimension |
| Company year founded
| The year the company was founded
**Field Name:** `companyYearFounded`
**Type:** dimension |
### Deal
| | |
| ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Deal ID
| The unique identifier for the deal in HubSpot
**Field Name:** `dealId`
**Type:** dimension |
| Deal name
| The name of the deal
**Field Name:** `dealName`
**Type:** dimension |
| Deal stage ID
| The internal ID of the current deal stage
**Field Name:** `dealStage`
**Type:** dimension |
| Deal stage name
| The display name of the current deal stage
**Field Name:** `dealStageName`
**Type:** dimension |
| Deal pipeline ID
| The internal ID of the deal pipeline
**Field Name:** `dealPipeline`
**Type:** dimension |
| Deal pipeline name
| The display name of the deal pipeline
**Field Name:** `dealPipelineName`
**Type:** dimension |
| Deal type
| The type of deal (e.g., new business, existing business)
**Field Name:** `dealType`
**Type:** dimension |
| Deal description
| A text description of the deal
**Field Name:** `dealDescription`
**Type:** dimension |
| Deal owner ID
| The ID of the HubSpot user who owns this deal
**Field Name:** `dealOwnerId`
**Type:** dimension |
| Deal owner name
| The name of the HubSpot user who owns this deal
**Field Name:** `dealOwnerName`
**Type:** dimension |
| Deal create date
| The date the deal was created in HubSpot
**Field Name:** `dealCreateDate`
**Type:** dimension |
| Deal last modified date
| The date the deal was last modified
**Field Name:** `dealLastModifiedDate`
**Type:** dimension |
| Deal close date
| The expected or actual close date of the deal
**Field Name:** `dealCloseDate`
**Type:** dimension |
| Deal closed won date
| The date the deal was marked as closed won
**Field Name:** `dealClosedWonDate`
**Type:** dimension |
| Deal closed lost reason
| The reason the deal was lost
**Field Name:** `dealClosedLostReason`
**Type:** dimension |
| Deal closed won reason
| The reason the deal was won
**Field Name:** `dealClosedWonReason`
**Type:** dimension |
| Deal source
| The original traffic source for the deal
**Field Name:** `dealSource`
**Type:** dimension |
| Deal source detail 1
| Additional detail about the deal source
**Field Name:** `dealSourceData1`
**Type:** dimension |
| Deal source detail 2
| Further detail about the deal source
**Field Name:** `dealSourceData2`
**Type:** dimension |
| Deal priority
| The priority level of the deal
**Field Name:** `dealPriority`
**Type:** dimension |
| Deal currency
| The currency code for the deal (e.g., USD, EUR)
**Field Name:** `dealCurrency`
**Type:** dimension |
| Deal stage probability
| The probability percentage associated with the current deal stage
**Field Name:** `dealStageProbability`
**Type:** dimension |
| Deal last activity date
| The date of the last direct activity on the deal
**Field Name:** `dealLastActivityDate`
**Type:** dimension |
| Deal last contacted date
| The date the deal was last contacted
**Field Name:** `dealLastContactedDate`
**Type:** dimension |
| Deal next activity date
| The date of the next scheduled activity on the deal
**Field Name:** `dealNextActivityDate`
**Type:** dimension |
| Deal owner assigned date
| The date the current owner was assigned to the deal
**Field Name:** `dealOwnerAssignedDate`
**Type:** dimension |
### Ticket
| | |
| ------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------- |
| Ticket ID
| The unique identifier for the ticket in HubSpot
**Field Name:** `ticketId`
**Type:** dimension |
| Ticket name
| The subject/name of the support ticket
**Field Name:** `ticketName`
**Type:** dimension |
| Ticket status
| The current status of the ticket in its pipeline
**Field Name:** `ticketStatus`
**Type:** dimension |
| Ticket pipeline ID
| The internal ID of the ticket pipeline
**Field Name:** `ticketPipeline`
**Type:** dimension |
| Ticket pipeline name
| The display name of the ticket pipeline
**Field Name:** `ticketPipelineName`
**Type:** dimension |
| Ticket category
| The category of the support ticket
**Field Name:** `ticketCategory`
**Type:** dimension |
| Ticket priority
| The priority level of the ticket (e.g., low, medium, high)
**Field Name:** `ticketPriority`
**Type:** dimension |
| Ticket description
| The content/description of the support ticket
**Field Name:** `ticketDescription`
**Type:** dimension |
| Ticket owner ID
| The ID of the HubSpot user who owns this ticket
**Field Name:** `ticketOwnerId`
**Type:** dimension |
| Ticket owner name
| The name of the HubSpot user who owns this ticket
**Field Name:** `ticketOwnerName`
**Type:** dimension |
| Ticket create date
| The date the ticket was created in HubSpot
**Field Name:** `ticketCreateDate`
**Type:** dimension |
| Ticket last modified date
| The date the ticket was last modified
**Field Name:** `ticketLastModifiedDate`
**Type:** dimension |
| Ticket close date
| The date the ticket was closed
**Field Name:** `ticketCloseDate`
**Type:** dimension |
| Ticket source
| The source/channel the ticket was created from
**Field Name:** `ticketSource`
**Type:** dimension |
| Ticket last activity date
| The date of the last activity on the ticket
**Field Name:** `ticketLastActivityDate`
**Type:** dimension |
| Ticket last contacted date
| The date the ticket was last contacted
**Field Name:** `ticketLastContactedDate`
**Type:** dimension |
| Ticket last customer reply date
| The date of the last customer reply on the ticket
**Field Name:** `ticketLastCustomerReplyDate`
**Type:** dimension |
| Ticket next activity date
| The date of the next scheduled activity on the ticket
**Field Name:** `ticketNextActivityDate`
**Type:** dimension |
| Ticket owner assigned date
| The date the current owner was assigned to the ticket
**Field Name:** `ticketOwnerAssignedDate`
**Type:** dimension |
| Ticket first agent reply date
| The date of the first agent reply on the ticket
**Field Name:** `ticketFirstAgentReplyDate`
**Type:** dimension |
### Email Campaign
| | |
| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| The unique identifier for the email campaign
**Field Name:** `emailCampaignId`
**Type:** dimension |
| Campaign name
| The name of the email campaign
**Field Name:** `emailCampaignName`
**Type:** dimension |
| Campaign subject
| The subject line of the email campaign
**Field Name:** `emailCampaignSubject`
**Type:** dimension |
| Campaign type
| The type of email campaign (e.g., regular, automated)
**Field Name:** `emailCampaignType`
**Type:** dimension |
| Campaign subtype
| The subtype of the email campaign
**Field Name:** `emailCampaignSubtype`
**Type:** dimension |
| Campaign app name
| The application that created the email campaign
**Field Name:** `emailCampaignAppName`
**Type:** dimension |
| Campaign content ID
| The content ID associated with the email campaign
**Field Name:** `emailCampaignContentId`
**Type:** dimension |
| Campaign group ID
| The group ID for the email campaign
**Field Name:** `emailCampaignGroupId`
**Type:** dimension |
| Campaign app ID
| The application ID that created the campaign
**Field Name:** `emailCampaignAppId`
**Type:** dimension |
| Campaign recipients included
| The number of recipients included in the email campaign
**Field Name:** `emailCampaignNumIncluded`
**Type:** dimension |
### Form
| | |
| ---------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Form ID
| The unique identifier for the form
**Field Name:** `formId`
**Type:** dimension |
| Form name
| The name of the form
**Field Name:** `formName`
**Type:** dimension |
| Form type
| The type of form (e.g., regular, pop-up, embedded)
**Field Name:** `formType`
**Type:** dimension |
| Form created date
| The date the form was created
**Field Name:** `formCreatedDate`
**Type:** dimension |
| Form updated date
| The date the form was last updated
**Field Name:** `formUpdatedDate`
**Type:** dimension |
### Product
| | |
| ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Product ID
| The unique identifier for the product in HubSpot
**Field Name:** `productId`
**Type:** dimension |
| Product name
| The name of the product
**Field Name:** `productName`
**Type:** dimension |
| Product SKU
| The stock keeping unit identifier for the product
**Field Name:** `productSku`
**Type:** dimension |
| Product description
| The description of the product
**Field Name:** `productDescription`
**Type:** dimension |
| Product price
| The unit price of the product
**Field Name:** `productPrice`
**Type:** dimension |
| Product cost of goods
| The cost of goods sold for the product
**Field Name:** `productCostOfGoods`
**Type:** dimension |
| Product billing period
| The recurring billing period for the product (e.g., monthly, annually)
**Field Name:** `productRecurringBillingPeriod`
**Type:** dimension |
| Product create date
| The date the product was created
**Field Name:** `productCreateDate`
**Type:** dimension |
| Product last modified date
| The date the product was last modified
**Field Name:** `productLastModifiedDate`
**Type:** dimension |
### Line Item
| | |
| --------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Line item ID
| The unique identifier for the line item
**Field Name:** `lineItemId`
**Type:** dimension |
| Line item name
| The name of the line item
**Field Name:** `lineItemName`
**Type:** dimension |
| Line item SKU
| The stock keeping unit for the line item
**Field Name:** `lineItemSku`
**Type:** dimension |
| Line item description
| The description of the line item
**Field Name:** `lineItemDescription`
**Type:** dimension |
| Line item create date
| The date the line item was created
**Field Name:** `lineItemCreateDate`
**Type:** dimension |
| Line item last modified date
| The date the line item was last modified
**Field Name:** `lineItemLastModifiedDate`
**Type:** dimension |
| Line item product ID
| The ID of the product associated with this line item
**Field Name:** `lineItemProductId`
**Type:** dimension |
| Line item billing start date
| The start date for recurring billing on this line item
**Field Name:** `lineItemRecurringBillingStartDate`
**Type:** dimension |
| Line item billing end date
| The end date for recurring billing on this line item
**Field Name:** `lineItemRecurringBillingEndDate`
**Type:** dimension |
| Line item billing frequency
| The recurring billing frequency for this line item
**Field Name:** `lineItemBillingFrequency`
**Type:** dimension |
### Activity
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| Activity ID
| The unique identifier for the activity
**Field Name:** `activityId`
**Type:** dimension |
| Activity type
| The type of activity (call, meeting, task, or note)
**Field Name:** `activityType`
**Type:** dimension |
| Activity title
| The title or subject of the activity
**Field Name:** `activityTitle`
**Type:** dimension |
| Activity body
| The body or description of the activity
**Field Name:** `activityBody`
**Type:** dimension |
| Activity owner ID
| The ID of the HubSpot user who owns the activity
**Field Name:** `activityOwnerId`
**Type:** dimension |
| Activity owner name
| The name of the HubSpot user who owns the activity
**Field Name:** `activityOwnerName`
**Type:** dimension |
| Activity create date
| The date the activity was created
**Field Name:** `activityCreateDate`
**Type:** dimension |
| Activity last modified date
| The date the activity was last modified
**Field Name:** `activityLastModifiedDate`
**Type:** dimension |
| Activity timestamp
| The timestamp when the activity occurred
**Field Name:** `activityTimestamp`
**Type:** dimension |
| Call direction
| The direction of the call (inbound or outbound)
**Field Name:** `callDirection`
**Type:** dimension |
| Call duration (seconds)
| The duration of the call in seconds
**Field Name:** `callDuration`
**Type:** dimension |
| Call status
| The status of the call (e.g., completed, no answer, busy)
**Field Name:** `callStatus`
**Type:** dimension |
| Call disposition
| The outcome or disposition of the call
**Field Name:** `callDisposition`
**Type:** dimension |
| Meeting title
| The title of the meeting
**Field Name:** `meetingTitle`
**Type:** dimension |
| Meeting outcome
| The outcome of the meeting (e.g., scheduled, completed, no show)
**Field Name:** `meetingOutcome`
**Type:** dimension |
| Meeting start time
| The start time of the meeting
**Field Name:** `meetingStartTime`
**Type:** dimension |
| Meeting end time
| The end time of the meeting
**Field Name:** `meetingEndTime`
**Type:** dimension |
| Meeting location
| The location of the meeting
**Field Name:** `meetingLocation`
**Type:** dimension |
| Task subject
| The subject of the task
**Field Name:** `taskSubject`
**Type:** dimension |
| Task status
| The status of the task (e.g., not started, in progress, completed)
**Field Name:** `taskStatus`
**Type:** dimension |
| Task priority
| The priority level of the task
**Field Name:** `taskPriority`
**Type:** dimension |
| Task type
| The type of task (e.g., todo, call, email)
**Field Name:** `taskType`
**Type:** dimension |
### Blog Post
| | |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| Blog post ID
| The unique identifier for the blog post
**Field Name:** `blogPostId`
**Type:** dimension |
| Blog post title
| The title of the blog post
**Field Name:** `blogPostTitle`
**Type:** dimension |
| Blog post slug
| The URL slug for the blog post
**Field Name:** `blogPostSlug`
**Type:** dimension |
| Blog post author
| The author of the blog post
**Field Name:** `blogPostAuthor`
**Type:** dimension |
| Blog post state
| The publish state of the blog post (e.g., draft, published)
**Field Name:** `blogPostState`
**Type:** dimension |
| Blog post URL
| The full URL of the blog post
**Field Name:** `blogPostUrl`
**Type:** dimension |
| Blog post publish date
| The date the blog post was published
**Field Name:** `blogPostPublishDate`
**Type:** dimension |
| Blog post create date
| The date the blog post was created
**Field Name:** `blogPostCreateDate`
**Type:** dimension |
| Blog post update date
| The date the blog post was last updated
**Field Name:** `blogPostUpdateDate`
**Type:** dimension |
### Web Analytics
| | |
| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Traffic source
| The source of the website traffic (e.g., organic search, direct, social)
**Field Name:** `trafficSource`
**Type:** dimension |
| Traffic country
| The country of the website visitor
**Field Name:** `trafficCountry`
**Type:** dimension |
| Traffic UTM campaign
| The UTM campaign parameter from the traffic source
**Field Name:** `trafficUtmCampaign`
**Type:** dimension |
| Traffic UTM medium
| The UTM medium parameter from the traffic source
**Field Name:** `trafficUtmMedium`
**Type:** dimension |
| Traffic UTM source
| The UTM source parameter from the traffic source
**Field Name:** `trafficUtmSource`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your HubSpot campaigns.
### Contact
| | |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| Number of contacts
| The total number of contacts returned
**Field Name:** `contactCount`
**Type:** metric |
| Contact associated deals
| The number of deals associated with the contact
**Field Name:** `contactNumAssociatedDeals`
**Type:** metric |
| Contact notes
| The number of notes on the contact record
**Field Name:** `contactNumNotes`
**Type:** metric |
| Contact page views
| The number of page views tracked for this contact
**Field Name:** `contactNumPageViews`
**Type:** metric |
| Contact visits
| The number of website visits tracked for this contact
**Field Name:** `contactNumVisits`
**Type:** metric |
| Contact days to close
| The number of days it took for the contact to become a customer
**Field Name:** `contactDaysToClose`
**Type:** metric |
| Contact total revenue
| The total revenue attributed to this contact
**Field Name:** `contactTotalRevenue`
**Type:** metric |
| Contact recent deal amount
| The amount of the contact's most recent deal
**Field Name:** `contactRecentDealAmount`
**Type:** metric |
| Contact HubSpot score
| The HubSpot lead scoring value for the contact
**Field Name:** `contactHubSpotScore`
**Type:** metric |
| Contact times contacted
| The number of times the contact has been contacted
**Field Name:** `contactTimesContacted`
**Type:** metric |
| Contact sales activities
| The total number of sales activities on the contact record
**Field Name:** `contactSalesActivities`
**Type:** metric |
| Contact event completions
| The number of analytics event completions for the contact
**Field Name:** `contactEventCompletions`
**Type:** metric |
| Contact sends since last engaged
| The number of email sends since the contact last engaged
**Field Name:** `contactSendsSinceLastEngaged`
**Type:** metric |
### Company
| | |
| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| Number of companies
| The total number of companies returned
**Field Name:** `companyCount`
**Type:** metric |
| Company employees
| The number of employees at the company
**Field Name:** `companyNumberOfEmployees`
**Type:** metric |
| Company annual revenue
| The annual revenue of the company
**Field Name:** `companyAnnualRevenue`
**Type:** metric |
| Company associated contacts
| The number of contacts associated with this company
**Field Name:** `companyNumAssociatedContacts`
**Type:** metric |
| Company associated deals
| The number of deals associated with this company
**Field Name:** `companyNumAssociatedDeals`
**Type:** metric |
| Company notes
| The number of notes on the company record
**Field Name:** `companyNumNotes`
**Type:** metric |
| Company total deal value
| The total value of all deals associated with this company
**Field Name:** `companyTotalDealValue`
**Type:** metric |
| Company days to close
| The average number of days to close deals for this company
**Field Name:** `companyDaysToClose`
**Type:** metric |
| Company total revenue
| The total revenue from deals associated with this company
**Field Name:** `companyTotalRevenue`
**Type:** metric |
| Company recent deal amount
| The amount of the company's most recent deal
**Field Name:** `companyRecentDealAmount`
**Type:** metric |
| Company Facebook fans
| The number of Facebook fans or likes for the company page
**Field Name:** `companyFacebookFans`
**Type:** metric |
| Company Twitter followers
| The number of Twitter followers for the company
**Field Name:** `companyTwitterFollowers`
**Type:** metric |
| Company page views
| The number of page views tracked for contacts associated with this company
**Field Name:** `companyPageViews`
**Type:** metric |
| Company sessions
| The number of website sessions from contacts associated with this company
**Field Name:** `companySessions`
**Type:** metric |
| Company form submissions
| The number of form submissions from contacts associated with this company
**Field Name:** `companyFormSubmissions`
**Type:** metric |
### Deal
| | |
| --------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| Number of deals
| The total number of deals returned
**Field Name:** `dealCount`
**Type:** metric |
| Deal amount
| The monetary amount of the deal
**Field Name:** `dealAmount`
**Type:** metric |
| Deal amount (home currency)
| The deal amount converted to the account home currency
**Field Name:** `dealAmountInHomeCurrency`
**Type:** metric |
| Deal forecast amount
| The weighted forecast amount based on deal probability
**Field Name:** `dealForecastAmount`
**Type:** metric |
| Deal days to close
| The number of days from deal creation to close
**Field Name:** `dealDaysToClose`
**Type:** metric |
| Deal associated contacts
| The number of contacts associated with this deal
**Field Name:** `dealNumAssociatedContacts`
**Type:** metric |
| Deal notes
| The number of notes on the deal record
**Field Name:** `dealNumNotes`
**Type:** metric |
| Deals closed won
| The number of deals that have been closed as won
**Field Name:** `dealClosedWonCount`
**Type:** metric |
| Deal MRR
| Monthly recurring revenue associated with the deal
**Field Name:** `dealMrr`
**Type:** metric |
| Deal ARR
| Annual recurring revenue associated with the deal
**Field Name:** `dealArr`
**Type:** metric |
| Deal ACV
| Annual contract value of the deal
**Field Name:** `dealAcv`
**Type:** metric |
| Deal TCV
| Total contract value of the deal
**Field Name:** `dealTcv`
**Type:** metric |
| Deal amount closed won
| The total monetary amount of deals that have been closed as won
**Field Name:** `dealAmountClosedWon`
**Type:** metric |
| Deal amount closed lost
| The total monetary amount of deals that have been closed as lost
**Field Name:** `dealAmountClosedLost`
**Type:** metric |
| Deals closed lost
| The number of deals that have been closed as lost
**Field Name:** `dealClosedLostCount`
**Type:** metric |
| Deal hit rate
| The percentage of deals closed won out of total closed deals
**Field Name:** `dealHitRate`
**Type:** metric |
| Deal avg days to close (won)
| The average number of days to close deals that were won
**Field Name:** `dealAvgDaysToCloseWon`
**Type:** metric |
| Deal recurring revenue
| The recurring revenue amount associated with the deal
**Field Name:** `dealRecurringRevenueAmount`
**Type:** metric |
### Ticket
| | |
| ------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Number of tickets
| The total number of tickets returned
**Field Name:** `ticketCount`
**Type:** metric |
| Ticket time to close (hours)
| The time in hours from ticket creation to close
**Field Name:** `ticketTimeToClose`
**Type:** metric |
| Ticket time to first response (hours)
| The time in hours from ticket creation to the first agent reply
**Field Name:** `ticketTimeToFirstResponse`
**Type:** metric |
| Ticket notes
| The number of notes on the ticket record
**Field Name:** `ticketNumNotes`
**Type:** metric |
| Ticket times contacted
| The number of times the ticket has been contacted
**Field Name:** `ticketTimesContacted`
**Type:** metric |
| Ticket number of replies
| The total number of replies on the ticket record
**Field Name:** `ticketNumberOfReplies`
**Type:** metric |
### Email Campaign
| | |
| ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------- |
| Emails sent
| Total number of emails sent in the campaign
**Field Name:** `emailSent`
**Type:** metric |
| Emails processed
| Total number of emails processed by the email service
**Field Name:** `emailProcessed`
**Type:** metric |
| Emails delivered
| Total number of emails successfully delivered
**Field Name:** `emailDelivered`
**Type:** metric |
| Emails opened
| Total number of unique email opens
**Field Name:** `emailOpened`
**Type:** metric |
| Emails clicked
| Total number of unique email link clicks
**Field Name:** `emailClicked`
**Type:** metric |
| Emails bounced
| Total number of emails that bounced
**Field Name:** `emailBounced`
**Type:** metric |
| Emails hard bounced
| Number of emails that permanently failed delivery
**Field Name:** `emailHardBounced`
**Type:** metric |
| Emails soft bounced
| Number of emails that temporarily failed delivery
**Field Name:** `emailSoftBounced`
**Type:** metric |
| Emails dropped
| Number of emails dropped before sending
**Field Name:** `emailDropped`
**Type:** metric |
| Emails deferred
| Number of emails deferred by the receiving server
**Field Name:** `emailDeferred`
**Type:** metric |
| Unsubscribes
| Number of recipients who unsubscribed from the campaign
**Field Name:** `emailUnsubscribed`
**Type:** metric |
| Spam reports
| Number of recipients who reported the email as spam
**Field Name:** `emailSpamReport`
**Type:** metric |
| Email replies
| Number of replies received to the campaign
**Field Name:** `emailReply`
**Type:** metric |
| MTA dropped
| Number of emails dropped by the mail transfer agent
**Field Name:** `emailMtaDropped`
**Type:** metric |
| Delivery rate
| Percentage of sent emails that were successfully delivered
**Field Name:** `emailDeliveredRate`
**Type:** metric |
| Open rate
| Percentage of delivered emails that were opened
**Field Name:** `emailOpenRate`
**Type:** metric |
| Click rate
| Percentage of delivered emails that received a click
**Field Name:** `emailClickRate`
**Type:** metric |
| Click-through rate
| Percentage of opened emails that received a click
**Field Name:** `emailClickThroughRate`
**Type:** metric |
| Bounce rate
| Percentage of sent emails that bounced
**Field Name:** `emailBounceRate`
**Type:** metric |
| Hard bounce rate
| Percentage of sent emails that hard bounced
**Field Name:** `emailHardBounceRate`
**Type:** metric |
| Soft bounce rate
| Percentage of sent emails that soft bounced
**Field Name:** `emailSoftBounceRate`
**Type:** metric |
| Unsubscribe rate
| Percentage of delivered emails that resulted in an unsubscribe
**Field Name:** `emailUnsubscribeRate`
**Type:** metric |
| Spam report rate
| Percentage of delivered emails reported as spam
**Field Name:** `emailSpamReportRate`
**Type:** metric |
| Drop rate
| Percentage of emails that were dropped before sending
**Field Name:** `emailDroppedRate`
**Type:** metric |
| Number of campaigns
| The total number of email campaigns returned
**Field Name:** `emailCampaignCount`
**Type:** metric |
### Form
| | |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Form submissions (total)
| The total number of submissions for the form
**Field Name:** `formSubmissionCount`
**Type:** metric |
| Number of forms
| The total number of forms returned
**Field Name:** `formCount`
**Type:** metric |
| Form submissions (period)
| The number of form submissions during the selected time period
**Field Name:** `formSubmissionCountPeriod`
**Type:** metric |
### Product
| | |
| ----------------------------- | ----------------------------------------------------------------------------------------------------- |
| Number of products
| The total number of products returned
**Field Name:** `productCount`
**Type:** metric |
### Line Item
| | |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Number of line items
| The total number of line items returned
**Field Name:** `lineItemCount`
**Type:** metric |
| Line item quantity
| The quantity of the line item
**Field Name:** `lineItemQuantity`
**Type:** metric |
| Line item unit price
| The unit price of the line item
**Field Name:** `lineItemPrice`
**Type:** metric |
| Line item amount
| The total amount for the line item (price x quantity)
**Field Name:** `lineItemAmount`
**Type:** metric |
| Line item cost of goods
| The cost of goods sold for the line item
**Field Name:** `lineItemCostOfGoods`
**Type:** metric |
### Activity
| | |
| ---------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| Number of activities
| The total number of activities returned
**Field Name:** `activityCount`
**Type:** metric |
| Number of calls
| The number of call activities
**Field Name:** `callCount`
**Type:** metric |
| Number of meetings
| The number of meeting activities
**Field Name:** `meetingCount`
**Type:** metric |
| Number of tasks
| The number of task activities
**Field Name:** `taskCount`
**Type:** metric |
| Number of notes
| The number of note activities
**Field Name:** `noteCount`
**Type:** metric |
| Total call duration (seconds)
| The total duration of all calls in seconds
**Field Name:** `callTotalDuration`
**Type:** metric |
### Blog Post
| | |
| ------------------------------- | -------------------------------------------------------------------------------------------------------- |
| Number of blog posts
| The total number of blog posts returned
**Field Name:** `blogPostCount`
**Type:** metric |
### Web Analytics
| | |
| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Sessions
| The total number of website sessions
**Field Name:** `trafficSessions`
**Type:** metric |
| Page views
| The total number of page views
**Field Name:** `trafficPageViews`
**Type:** metric |
| Visitors
| The number of unique visitors
**Field Name:** `trafficVisitors`
**Type:** metric |
| Bounce rate
| The percentage of sessions where visitors left after viewing only one page
**Field Name:** `trafficBounceRate`
**Type:** metric |
| New visitor rate
| The percentage of sessions from new visitors
**Field Name:** `trafficNewVisitorSessionRate`
**Type:** metric |
| Avg page views per session
| The average number of pages viewed per session
**Field Name:** `trafficAvgPageViews`
**Type:** metric |
| Avg session length
| The average length of a session in seconds
**Field Name:** `trafficAvgSessionLength`
**Type:** metric |
| Entrances
| The number of times a page was the first page viewed in a session
**Field Name:** `trafficEntrances`
**Type:** metric |
| Exits
| The number of times a page was the last page viewed in a session
**Field Name:** `trafficExits`
**Type:** metric |
| Submissions
| The number of form submissions from website visitors
**Field Name:** `trafficSubmissions`
**Type:** metric |
| Contacts created
| The number of new contacts created from website traffic
**Field Name:** `trafficContacts`
**Type:** metric |
| Session-to-contact rate
| The percentage of sessions that resulted in a new contact
**Field Name:** `trafficSessionToContactRate`
**Type:** metric |
***
## Related
Browse all platforms
Klaviyo metrics & dimensions
Mailchimp metrics & dimensions
Google Merchant Center metrics & dimensions
# Detrics HubSpot Integration: Setup Guide
Source: https://support.detrics.io/data-source/hubspot/setup-guide
How to install, configure, and start using the Detrics HubSpot integration to send your CRM data to Google Sheets, Looker Studio, Claude, and BigQuery.
The **Detrics HubSpot Integration** connects your HubSpot CRM to Google Sheets, Looker Studio, Claude, and BigQuery. Once connected, your contacts, companies, deals, tickets, and marketing data become queryable from the tools your team already uses, on a schedule you define.
This guide walks you through installation, the permissions Detrics requests, the user journey after connecting, and how to disconnect when you no longer need the integration.
## What you can do with the Detrics HubSpot Integration
* **Pull CRM data into spreadsheets.** Build pipeline reports, lifecycle analyses, and revenue dashboards in Google Sheets without copy-pasting.
* **Power Looker Studio dashboards.** Auto-refreshing visualizations of contacts, deals, companies, and email campaigns.
* **Ask questions in Claude.** Query your HubSpot data with natural language via the Detrics MCP connector.
* **Sync to BigQuery.** Schedule full and incremental syncs of HubSpot objects into your data warehouse for SQL access and downstream pipelines.
A complete list of available HubSpot dimensions and metrics is in the [HubSpot Metrics & Dimensions reference](/data-source/hubspot/fields).
## Prerequisites
Before you install the integration, make sure you have:
* A **HubSpot account** on any plan (Free, Starter, Professional, or Enterprise). Core CRM data (contacts, companies, deals, and owners) is available on all plans. Some advanced data (e.g., marketing analytics, workflows) requires a Professional or Enterprise plan and is fetched only when your portal supports it.
* A HubSpot user with **Super Admin** permission, or **App Marketplace Access** explicitly granted. HubSpot requires this permission to install any third-party app.
* A **Google account**, which you will use to sign up for Detrics.
## Installation
The Detrics HubSpot Integration is installed and configured from inside the Detrics web app at [app.detrics.io](https://app.detrics.io). Follow the steps below.
Go to [app.detrics.io](https://app.detrics.io) and sign up with your Google account. Detrics is free to start, with no credit card required. If you already have a Detrics account, just sign in.
Once you are signed in, click **Data Sources** in the left sidebar. This page lists every platform you can connect to Detrics.
Find **HubSpot** in the list of available data sources and click on it. This opens the HubSpot connection page inside Detrics.
Click the **Connect** button. Detrics redirects you to HubSpot's official OAuth authorization page.
Make sure you are signed into HubSpot with a user that has Super Admin permission (or App Marketplace Access). If you are signed in with multiple HubSpot accounts in your browser, HubSpot will ask you to choose which portal you want to connect.
Review the permissions Detrics is requesting and click **Connect app** on
HubSpot's screen. See [Permissions Detrics
requests](#permissions-detrics-requests) below for a full breakdown of every
scope and why we need it. All access is **read-only**. Detrics cannot modify
your HubSpot records, send emails, or take any action on your behalf.
HubSpot redirects you back to Detrics. Your HubSpot portal now appears in your connected data sources, and you can immediately start querying it from any destination (Sheets, Looker Studio, Claude, or BigQuery).
## Permissions Detrics requests
Detrics asks for the minimum HubSpot scopes needed to retrieve the data exposed in the [HubSpot Metrics & Dimensions reference](/data-source/hubspot/fields). All scopes are **read-only**. Detrics never requests write, delete, or send permissions.
### Required scopes
These scopes are requested on every install. They cover the core CRM objects every Detrics HubSpot query depends on.
| HubSpot scope | What Detrics uses it for |
| ---------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| `oauth` | Required by HubSpot for any OAuth-based integration. Identifies the authenticated portal. |
| `crm.objects.contacts.read` | Read your contacts so we can surface contact dimensions and counts (lifecycle stage, source, create date, total contacts, etc.). |
| `crm.schemas.contacts.read` | Read your contact property definitions so custom contact fields are correctly typed in your reports. |
| `crm.objects.companies.read` | Read your companies so we can surface company dimensions and metrics (industry, domain, total revenue, associated deals, etc.). |
| `crm.schemas.companies.read` | Read your company property definitions so custom company fields are correctly typed. |
| `crm.objects.deals.read` | Read your deals so we can surface pipeline reporting (stage, amount, close date, win rate, etc.). |
| `crm.schemas.deals.read` | Read your deal property definitions so custom deal fields are correctly typed. |
| `crm.objects.owners.read` | Read the HubSpot users who own contacts, companies, and deals so owner names appear in your reports instead of opaque IDs. |
### Optional scopes
Detrics also requests the following optional scopes. HubSpot **silently drops** any optional scope your portal does not support (for example, if your plan does not include marketing tools), so requesting them does not block install on lower-tier HubSpot plans.
| HubSpot scope | What Detrics uses it for |
| ----------------------- | --------------------------------------------------------------------------------------------------------------------- |
| `business-intelligence` | Read marketing campaign performance and engagement metrics (sends, opens, clicks, etc.) for email campaign reporting. |
| `content` | Read marketing emails and blog posts so they appear as queryable dimensions alongside engagement metrics. |
| `e-commerce` | Read line items and products so you can analyze deal composition and product-level revenue. |
| `forms` | Read form definitions and submissions so form-driven funnel analysis is available. |
| `tickets` | Read support tickets so you can build ticket-volume, response-time, and customer-service dashboards. |
If your HubSpot plan does not include one of the optional data types above, the corresponding fields will simply not return data, and the rest of the integration is unaffected.
## Using your HubSpot data after connecting
Once your HubSpot portal is connected, you can query the same data from any Detrics destination:
Pull HubSpot data into a spreadsheet, build reports, and schedule automatic refreshes.
Power Looker Studio dashboards with live HubSpot CRM and marketing data.
Ask natural-language questions about your HubSpot data using the Detrics MCP
connector.
Sync HubSpot objects to BigQuery on a schedule for SQL access and downstream pipelines.
For the full list of HubSpot dimensions and metrics you can query, see the [HubSpot Metrics & Dimensions reference](/data-source/hubspot/fields).
## Pricing
Detrics is free to start and offers paid plans for teams with higher query volumes and more destinations. The Detrics HubSpot Integration works on every Detrics plan and is included in your standard Detrics subscription, with no separate add-on cost.
See the [Detrics pricing page](https://detrics.io/pricing) for current plans and limits.
## Data handling and security
* **Read-only access.** Detrics requests read-only scopes from HubSpot and cannot modify, delete, or send anything from your HubSpot portal.
* **Encryption.** Access and refresh tokens are encrypted at rest in the Detrics database, and all traffic between Detrics and HubSpot uses HTTPS.
* **Token lifecycle.** HubSpot access tokens expire every 30 minutes. Detrics refreshes them automatically using the refresh token issued at install. Refresh tokens are revoked the moment you disconnect (see below).
* **Data retention.** Detrics caches recent query results to speed up repeated requests and to power scheduled refreshes. Cached data is associated with your Detrics workspace and is not shared with any third party.
For more detail, see the [Detrics data security page](https://detrics.io/data-security).
## Uninstalling and disconnecting
You can disconnect the Detrics HubSpot Integration at any time from either side:
### From inside Detrics
1. Sign in to [app.detrics.io](https://app.detrics.io).
2. Open **Data Sources** in the left sidebar.
3. Click your HubSpot connection and select **Disconnect**.
Detrics immediately revokes the refresh token with HubSpot and stops all future syncs for that portal.
### From inside HubSpot
1. In HubSpot, click the **Settings** gear in the top navigation.
2. Go to **Integrations → Connected Apps**.
3. Find **Detrics**, open its menu, and click **Uninstall**.
Uninstalling from HubSpot also revokes the tokens Detrics holds, so any scheduled syncs that depend on this portal will stop.
### Requesting deletion of cached data
Disconnecting revokes the tokens and stops new syncs, but cached query results may remain in Detrics until they expire. To request immediate deletion of all cached HubSpot data associated with your workspace, email [support@detrics.io](mailto:support@detrics.io) with the subject line "HubSpot data deletion request" and the Detrics workspace name.
## Support
If you run into any issue installing or using the Detrics HubSpot Integration:
* Email us at [support@detrics.io](mailto:support@detrics.io).
* Visit [support.detrics.io](https://support.detrics.io) for help articles and to open a ticket.
* For general connection problems, see [Troubleshooting Connections](/connect/troubleshooting-connections).
# Instagram Insights Metrics & Dimensions
Source: https://support.detrics.io/data-source/instagram-insights/fields
Complete reference for Instagram Insights dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Instagram Insights data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Instagram Insights data.
### Account
| | |
| --------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Account ID
| Hover over complex dimensions and metrics to uncover detailed explanations 😉
**Field Name:** `account_id`
**Type:** dimension |
| Username
| The username of the Instagram account.
**Field Name:** `username`
**Type:** dimension |
| Website
| The website link of the account.
**Field Name:** `website`
**Type:** dimension |
| Biography
| The account's biography.
**Field Name:** `biography`
**Type:** dimension |
### Account Metrics Breakdowns
| | |
| ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Media Type
| Break down results by the surface where viewers viewed or interacted with your account's media. Can be: AD, FEED, REELS, STORY.
**Field Name:** `account_media_product_type`
**Type:** dimension |
| Follow Type
| Break down results by followers or non-followers. Only compatible with metrics: Follows and Unfollows, Reach.
**Field Name:** `account_follow_type`
**Type:** dimension |
### Account Demographics
| | |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Country
| Can't be selected with other demographic dimensions. Combine with 'Account Demographics' metrics.
**Field Name:** `country`
**Type:** dimension |
| City
| Can't be selected with other demographic dimensions. Combine with 'Account Demographics' metrics.
**Field Name:** `city`
**Type:** dimension |
| Age
| Can be combined with Gender. Combine with 'Account Demographics' metrics.
**Field Name:** `age`
**Type:** dimension |
| Gender
| Can be combined with Age. Combine with 'Account Demographics' metrics.
**Field Name:** `gender`
**Type:** dimension |
### Media
| | |
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Media ID
| The unique identifier for this media item. You can use this ID to link organic and paid metrics from the Facebook Ads Integration.
**Field Name:** `media_id`
**Type:** dimension |
| Shortcode
| Another unique identifier for the media item. You can find it the final part of the item's permalink.
**Field Name:** `shortcode`
**Type:** dimension |
| Media Product Type
| Wether the media item is a REELS item or FEED item. Feed items include: single image posts, carousel posts and video posts.
**Field Name:** `media_product_type`
**Type:** dimension |
| Media Type
| Wether the media contains a video, an image or multiple images.
**Field Name:** `media_type`
**Type:** dimension |
| Permalink
| The permanent link for the published media. It contains the shortcode which acts as another unique identifier.
**Field Name:** `permalink`
**Type:** dimension |
| Caption
| The media item's caption.
**Field Name:** `caption`
**Type:** dimension |
| Media Image
| The image content of the media item.
**Field Name:** `media_image`
**Type:** dimension |
| Thumbnail Image
| The thumbnail image of the media item.
**Field Name:** `thumbnail_image`
**Type:** dimension |
| Media URL
| An URL to the media file of the publication.
**Field Name:** `media_url`
**Type:** dimension |
| Thumbnail URL
| The URL of the published image or a snapshot of the video.
**Field Name:** `thumbnail_url`
**Type:** dimension |
| Date Published
| The date where the media item was published.
**Field Name:** `timestamp`
**Type:** dimension |
| Post Username
| The username of the account that published the post. Useful when querying multiple accounts at once.
**Field Name:** `media_owner_username`
**Type:** dimension |
| Shared to Feed
| Whether a Reel is also shown on the main profile feed. Only applies to Reels.
**Field Name:** `is_shared_to_feed`
**Type:** dimension |
| Comments Enabled
| Whether commenting is enabled on the post.
**Field Name:** `is_comment_enabled`
**Type:** dimension |
### Comments
| | |
| ------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Comment
| The text of each comment on your posts. Returns one row per comment, alongside any Media dimensions you select (Permalink, Caption, etc.). Cannot be combined with metrics or Account dimensions.
**Field Name:** `comment_text`
**Type:** dimension |
| Comment Date
| The date and time the comment was posted.
**Field Name:** `comment_timestamp`
**Type:** dimension |
| Comment ID
| The unique identifier of the comment.
**Field Name:** `comment_id`
**Type:** dimension |
| Comment Hidden
| Whether the comment is hidden/moderated (true or false).
**Field Name:** `comment_hidden`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Instagram Insights campaigns.
### Comments
| | |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Comment Likes
| The number of likes on each comment. Returns one row per comment alongside the comment dimensions (Comment, Comment Date).
**Field Name:** `comment_like_count`
**Type:** metric |
### Account Lifetime
| | |
| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Followers
| Total number of followers at the time the query is being executed. There's no way of going to the past and checking the amount of followers.
**Field Name:** `followers_count`
**Type:** metric |
| Media Count
| Total number of media items published at the time the query is being executed.
**Field Name:** `media_count`
**Type:** metric |
| Follows
| Total number of followed accounts at the time the query is being executed.
**Field Name:** `follows_count`
**Type:** metric |
### Account Metrics (All Time)
| | |
| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Account Likes
| The number of likes on your posts, reels, and videos. Compatible with Media Type breakdown.
**Field Name:** `account_likes`
**Type:** metric |
| Account Shares
| Compatible with Media Type breakdown.
**Field Name:** `account_shares`
**Type:** metric |
| Account Saves
| Compatible with Media Type breakdown.
**Field Name:** `account_saves`
**Type:** metric |
| Account Comments
| Compatible with Media Type breakdown.
**Field Name:** `account_comments`
**Type:** metric |
| Account Total Interactions
| The total number of interactions of posts, stories, reels, videos and live videos, including organic and paid.
**Field Name:** `account_total_interactions`
**Type:** metric |
| Account Profile Views
| Total number of users who have viewed the your profile
**Field Name:** `profile_views`
**Type:** metric |
| Account Website Clicks
| The number of times that the link to your website was tapped.
**Field Name:** `website_clicks`
**Type:** metric |
| Account Views
| The number of times your content was played or displayed. Content includes reels, posts, stories.
**Field Name:** `account_views`
**Type:** metric |
### Account Metrics (Daily)
| | |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Account Reach
| The number of unique accounts that have seen your content, at least once, including in ads. These metrics support both 'All Time' and 'Daily'
**Field Name:** `account_reach`
**Type:** metric |
| Account Impressions (Deprecated)
| The number of times your posts, stories, reels, videos and live videos were on screen, including in ads. (Replaced by 'Account Views' which is not compatible with daily breakdown)
**Field Name:** `account_impressions`
**Type:** metric |
### Account Demographics
| | |
| ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Follower Demographics Count
| Only valid with 'Account Demographics' dimensions. Counts the number of followers for each demographic dimension.
**Field Name:** `follower_demographics`
**Type:** metric |
| Reached Audience Demographics Count
| Only valid with 'Account Demographics' dimensions. Counts the number of reached followers for each demographic dimension.
**Field Name:** `reached_audience_demographics`
**Type:** metric |
| Engaged Audience Demographics Count
| Only valid with 'Account Demographics' dimensions. Counts the number of reached and engaged followers for each demographic dimension.
**Field Name:** `engaged_audience_demographics`
**Type:** metric |
### Account Follow Type
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Account Follows And Unfollows
| Only compatible with 'Follow Type' dimension.
**Field Name:** `account_follows_and_unfollows`
**Type:** metric |
### Media
| | |
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Likes
| Total amount of organic likes for the media. By media we mean: Reels, Image post, Video post or Carousel Post. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `likes`
**Type:** metric |
| Comments
| Total amount of organic comments for the media. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `comments`
**Type:** metric |
| Saved
| Total number of unique accounts that have saved the media object organically. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `saved`
**Type:** metric |
| Impressions (Deprecated)
| Total number of times the media item has been seen organically. This is a lifetime metric, i.e. it is not affected by the selected timeframe. (Replaced by the "Views" metric)
**Field Name:** `impressions`
**Type:** metric |
| Reach
| Unique users that saw your publications organically. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `reach`
**Type:** metric |
| Total Interactions
| Total engagement on the post: likes + comments + saves + shares. Available for all post types including Reels. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `total_interactions`
**Type:** metric |
| Follows From Post
| New accounts that followed you from this post. Only available for feed posts (image, video, carousel) — returns 0 for Reels. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `follows`
**Type:** metric |
| Profile Visits From Post
| Profile visits driven by this post. Only available for feed posts (image, video, carousel) — returns 0 for Reels. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `profile_visits`
**Type:** metric |
| Profile Activity From Post
| Actions taken on your profile (e.g. taps on contact/CTA buttons) driven by this post. Only available for feed posts (image, video, carousel) — returns 0 for Reels. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `profile_activity`
**Type:** metric |
| Views
| The number of times your content was played or displayed. Content includes reels, posts, stories. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `views`
**Type:** metric |
### Reels
| | |
| ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Reel Plays (Deprecated)
| The number of times that your video starts to play after an impression has already been counted. This is defined as organic video sessions with 1 ms or more of playback and excludes replays. This is a lifetime metric, i.e. it is not affected by the selected timeframe. (Replaced by the "Views" metric)
**Field Name:** `plays`
**Type:** metric |
| Reels Average Watch Time
| The average amount of time spent playing the reel. This is calculated by the watch time divided by the number of plays. (in seconds) This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `ig_reels_avg_watch_time`
**Type:** metric |
| Reels Total View Time
| The total amount of time the reel was played, including any time spent replaying the reel. (in seconds) This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `ig_reels_video_view_total_time`
**Type:** metric |
### Reels & Images
| | |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Shares
| The number of organic shares of your reel or image post. This metric is not available for videos and carousels. This is a lifetime metric, i.e. it is not affected by the selected timeframe.
**Field Name:** `shares`
**Type:** metric |
***
## Related
Browse all platforms
Facebook Insights metrics & dimensions
Facebook Public Data metrics & dimensions
TikTok Organic metrics & dimensions
# Instantly Metrics & Dimensions
Source: https://support.detrics.io/data-source/instantly/fields
Complete reference for Instantly cold email dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Instantly data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Instantly data.
### Account
| | |
| ----------------------- | ------------------------------------------------------------------------------------------- |
| Account ID
| Instantly workspace ID
**Field Name:** `account_id`
**Type:** dimension |
| Account Name
| Instantly workspace name
**Field Name:** `account_name`
**Type:** dimension |
### Campaign Analytics
| | |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| Unique identifier for the Instantly campaign
**Field Name:** `campaign_id`
**Type:** dimension |
| Campaign Name
| Name of the cold email campaign
**Field Name:** `campaign_name`
**Type:** dimension |
| Campaign Status
| Current campaign status (Draft, Active, Paused, Completed, Running Subsequences, Account Suspended, Accounts Unhealthy, Bounce Protect)
**Field Name:** `campaign_status`
**Type:** dimension |
| Campaign Is Evergreen
| Whether the campaign runs continuously as new leads are added
**Field Name:** `campaign_is_evergreen`
**Type:** dimension |
| Campaign Created Date
| Date and time when the campaign was created
**Field Name:** `campaign_created_datetime`
**Type:** dimension |
| Step Number
| Sequence step number. Selecting step dimensions switches the report to step-level analytics (time aggregation "All" only)
**Field Name:** `step_number`
**Type:** dimension |
| Step Variant
| A/B test variant of the sequence step (time aggregation "All" only)
**Field Name:** `step_variant`
**Type:** dimension |
### Leads
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Lead ID
| Unique identifier for the lead
**Field Name:** `lead_id`
**Type:** dimension |
| Lead Email
| Email address of the lead
**Field Name:** `lead_email`
**Type:** dimension |
| Lead First Name
| First name of the lead
**Field Name:** `lead_first_name`
**Type:** dimension |
| Lead Last Name
| Last name of the lead
**Field Name:** `lead_last_name`
**Type:** dimension |
| Lead Company Name
| Company the lead works for
**Field Name:** `lead_company_name`
**Type:** dimension |
| Lead Company Domain
| Company website domain of the lead
**Field Name:** `lead_company_domain`
**Type:** dimension |
| Lead Website
| Website of the lead
**Field Name:** `lead_website`
**Type:** dimension |
| Lead Job Title
| Job title of the lead
**Field Name:** `lead_job_title`
**Type:** dimension |
| Lead Phone
| Phone number of the lead
**Field Name:** `lead_phone`
**Type:** dimension |
| Lead Status
| Campaign status of the lead (Active, Paused, Completed, Bounced, Unsubscribed, Skipped)
**Field Name:** `lead_status`
**Type:** dimension |
| Lead Interest Status
| Interest classification of the lead (Interested, Meeting Booked, Meeting Completed, Won, Not Interested, Wrong Person, Lost, No Show, Out of Office)
**Field Name:** `lead_interest_status`
**Type:** dimension |
| Lead LinkedIn
| LinkedIn profile URL of the lead
**Field Name:** `lead_linkedin`
**Type:** dimension |
| Lead Location
| Location of the lead
**Field Name:** `lead_location`
**Type:** dimension |
| Lead List ID
| ID of the lead list the lead belongs to
**Field Name:** `lead_list_id`
**Type:** dimension |
| Lead List Name
| Name of the lead list the lead belongs to
**Field Name:** `lead_list_name`
**Type:** dimension |
| Lead Campaign ID
| ID of the campaign the lead is enrolled in
**Field Name:** `lead_campaign_id`
**Type:** dimension |
| Lead Upload Method
| How the lead was added (manual, API, CSV import, etc.)
**Field Name:** `lead_upload_method`
**Type:** dimension |
| Lead Email Provider
| Email service provider detected for the lead's address (Google, Microsoft, Zoho, Yahoo, etc.)
**Field Name:** `lead_esp_code`
**Type:** dimension |
| Lead Created Date
| Date and time when the lead was created
**Field Name:** `lead_created_datetime`
**Type:** dimension |
| Lead Updated Date
| Date and time when the lead was last updated
**Field Name:** `lead_updated_datetime`
**Type:** dimension |
### Emails
| | |
| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Email ID
| Unique identifier for the email activity record
**Field Name:** `email_id`
**Type:** dimension |
| Email Date
| Date and time when the email was sent or received
**Field Name:** `email_datetime`
**Type:** dimension |
| Email Direction
| Direction of the email (Sent from campaign, Received, Sent, Scheduled)
**Field Name:** `email_direction`
**Type:** dimension |
| Email Subject
| Subject line of the email
**Field Name:** `email_subject`
**Type:** dimension |
| Email Body
| Plain-text body of the email
**Field Name:** `email_body_text`
**Type:** dimension |
| Email From
| Sender address of the email
**Field Name:** `email_from`
**Type:** dimension |
| Email To
| Recipient address of the email
**Field Name:** `email_to`
**Type:** dimension |
| Email Sender Account
| Sender inbox (Instantly account) that sent the email
**Field Name:** `email_sender_account`
**Type:** dimension |
| Email Campaign ID
| ID of the campaign the email belongs to
**Field Name:** `email_campaign_id`
**Type:** dimension |
| Email Campaign Name
| Name of the campaign the email belongs to
**Field Name:** `email_campaign_name`
**Type:** dimension |
| Email Lead
| Lead email address the message was exchanged with
**Field Name:** `email_lead_email`
**Type:** dimension |
| Email Step
| Sequence step that produced the email
**Field Name:** `email_step`
**Type:** dimension |
| Email Thread ID
| Conversation thread the email belongs to
**Field Name:** `email_thread_id`
**Type:** dimension |
### Sender Accounts
| | |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Sender Email
| Email address of the sender inbox
**Field Name:** `sender_email`
**Type:** dimension |
| Sender First Name
| First name configured on the sender inbox
**Field Name:** `sender_first_name`
**Type:** dimension |
| Sender Last Name
| Last name configured on the sender inbox
**Field Name:** `sender_last_name`
**Type:** dimension |
| Sender Status
| Status of the sender inbox (Active, Paused, Maintenance, Connection Error, Soft Bounce Error, Sending Error)
**Field Name:** `sender_status`
**Type:** dimension |
| Sender Warmup Status
| Warmup status of the sender inbox (Active, Paused, Banned, Spam Folder Unknown, Permanent Suspension)
**Field Name:** `sender_warmup_status`
**Type:** dimension |
| Sender Provider
| Email provider of the sender inbox (Google, Microsoft, AWS, Custom IMAP/SMTP, etc.)
**Field Name:** `sender_provider`
**Type:** dimension |
| Sender Tracking Domain
| Custom tracking domain configured for the sender inbox
**Field Name:** `sender_tracking_domain`
**Type:** dimension |
| Sender Created Date
| Date and time when the sender inbox was connected
**Field Name:** `sender_created_datetime`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Instantly campaigns.
### Campaign Analytics
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| Emails Sent
| Total emails sent by the campaign
**Field Name:** `emails_sent`
**Type:** metric |
| Contacted
| Total leads contacted by the campaign
**Field Name:** `contacted`
**Type:** metric |
| New Leads Contacted
| Leads contacted for the first time in the selected period
**Field Name:** `new_leads_contacted`
**Type:** metric |
| Replies
| Total replies received
**Field Name:** `replies`
**Type:** metric |
| Unique Replies
| Unique leads that replied
**Field Name:** `replies_unique`
**Type:** metric |
| Automatic Replies
| Automatic replies received (out-of-office, autoresponders)
**Field Name:** `replies_automatic`
**Type:** metric |
| Opens
| Total email opens (requires open tracking enabled in Instantly)
**Field Name:** `opens`
**Type:** metric |
| Unique Opens
| Unique leads that opened an email (requires open tracking enabled in Instantly)
**Field Name:** `opens_unique`
**Type:** metric |
| Clicks
| Total link clicks (requires click tracking enabled in Instantly)
**Field Name:** `clicks`
**Type:** metric |
| Unique Clicks
| Unique leads that clicked a link (requires click tracking enabled in Instantly)
**Field Name:** `clicks_unique`
**Type:** metric |
| Opportunities
| Opportunities generated by the campaign
**Field Name:** `opportunities`
**Type:** metric |
| Bounced
| Emails that bounced (time aggregation "All" only)
**Field Name:** `bounced`
**Type:** metric |
| Unsubscribed
| Leads that unsubscribed (time aggregation "All" only)
**Field Name:** `unsubscribed`
**Type:** metric |
| Completed Leads
| Leads that finished the sequence (time aggregation "All" only)
**Field Name:** `completed_leads`
**Type:** metric |
| Total Leads
| Total leads in the campaign (time aggregation "All" only)
**Field Name:** `leads_total`
**Type:** metric |
| Opportunity Value
| Total value of opportunities generated (time aggregation "All" only)
**Field Name:** `opportunity_value`
**Type:** metric |
| Interested
| Leads marked as interested (time aggregation "All" only)
**Field Name:** `interested`
**Type:** metric |
| Meetings Booked
| Meetings booked (time aggregation "All" only)
**Field Name:** `meetings_booked`
**Type:** metric |
| Meetings Completed
| Meetings completed (time aggregation "All" only)
**Field Name:** `meetings_completed`
**Type:** metric |
| Closed
| Deals closed (time aggregation "All" only)
**Field Name:** `closed`
**Type:** metric |
| Reply Rate
| Unique replies divided by new leads contacted (0–1 ratio)
**Field Name:** `reply_rate`
**Type:** metric |
| Bounce Rate
| Bounced emails divided by contacted leads (0–1 ratio, time aggregation "All" only)
**Field Name:** `bounce_rate`
**Type:** metric |
### Leads
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| Lead Opens
| Number of email opens by the lead
**Field Name:** `lead_open_count`
**Type:** metric |
| Lead Replies
| Number of replies from the lead
**Field Name:** `lead_reply_count`
**Type:** metric |
| Lead Clicks
| Number of link clicks by the lead
**Field Name:** `lead_click_count`
**Type:** metric |
| Leads Count
| Number of leads (1 per row — sum to count leads per group)
**Field Name:** `leads_count`
**Type:** metric |
### Emails
| | |
| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| Emails Count
| Number of emails (1 per row — sum to count emails per group)
**Field Name:** `emails_count`
**Type:** metric |
### Sender Accounts
| | |
| ------------------------------ | ---------------------------------------------------------------------------------------------------------------------- |
| Sender Warmup Score
| Warmup health score of the sender inbox (0–100)
**Field Name:** `sender_warmup_score`
**Type:** metric |
***
## Related
Browse all platforms
HubSpot metrics & dimensions
Mailchimp metrics & dimensions
Klaviyo metrics & dimensions
# Klaviyo Metrics & Dimensions
Source: https://support.detrics.io/data-source/klaviyo/fields
Complete reference for Klaviyo email marketing dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Klaviyo data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Klaviyo data.
### Account
| | |
| ----------------------- | -------------------------------------------------------------------------------------------------------------- |
| Account ID
| The unique identifier for the Klaviyo account
**Field Name:** `account_id`
**Type:** dimension |
| Account name
| The Klaviyo account/organization name
**Field Name:** `account_name`
**Type:** dimension |
### Campaign
| | |
| --------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| The unique identifier for the email campaign
**Field Name:** `campaign_id`
**Type:** dimension |
| Campaign name
| The name of the email campaign
**Field Name:** `campaign_name`
**Type:** dimension |
| Campaign status
| The current status of the campaign (e.g., sent, draft)
**Field Name:** `campaign_status`
**Type:** dimension |
| Campaign send date & time
| The date and time when the campaign was sent (YYYY-MM-DD HH:MM:SS)
**Field Name:** `campaign_send_datetime`
**Type:** dimension |
| Campaign created date & time
| The date and time when the campaign was created
**Field Name:** `campaign_created_datetime`
**Type:** dimension |
### Email Content
| | |
| ----------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Subject
| The email subject line
**Field Name:** `campaign_subject`
**Type:** dimension |
| Preview text
| The email preview text shown in inbox
**Field Name:** `campaign_preview_text`
**Type:** dimension |
| From email
| The sender email address
**Field Name:** `campaign_from_email`
**Type:** dimension |
| From name
| The sender display name
**Field Name:** `campaign_from_name`
**Type:** dimension |
| Message type
| The type of message (e.g., email)
**Field Name:** `campaign_message_type`
**Type:** dimension |
| Template ID
| The ID of the email template used
**Field Name:** `campaign_template_id`
**Type:** dimension |
### Flow
| | |
| ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Flow ID
| The unique identifier for the automated flow
**Field Name:** `flow_id`
**Type:** dimension |
| Flow name
| The name of the automated email flow
**Field Name:** `flow_name`
**Type:** dimension |
| Flow status
| The current status of the flow (draft, live, manual)
**Field Name:** `flow_status`
**Type:** dimension |
| Flow trigger type
| The type of trigger that starts the flow (e.g., list, metric, segment)
**Field Name:** `flow_trigger_type`
**Type:** dimension |
| Flow created date & time
| The date and time when the flow was created
**Field Name:** `flow_created_datetime`
**Type:** dimension |
| Flow updated date & time
| The date and time when the flow was last updated
**Field Name:** `flow_updated_datetime`
**Type:** dimension |
| Flow message ID
| The unique identifier for the specific message within the flow
**Field Name:** `flow_message_id`
**Type:** dimension |
| Flow message name
| The name of the specific message within the flow
**Field Name:** `flow_message_name`
**Type:** dimension |
### Source
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Send channel
| The channel type - distinguishes campaigns from flows (campaign or flow)
**Field Name:** `send_channel`
**Type:** dimension |
### Lists & Segments
| | |
| --------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| List / Segment ID
| The unique identifier of the list or segment
**Field Name:** `list_id`
**Type:** dimension |
| List / Segment name
| The name of the list or segment
**Field Name:** `list_name`
**Type:** dimension |
| Audience type (List or Segment)
| Whether the audience is a List or a Segment
**Field Name:** `list_type`
**Type:** dimension |
| List / Segment created date & time
| When the list or segment was created
**Field Name:** `list_created_datetime`
**Type:** dimension |
| List / Segment updated date & time
| When the list or segment was last updated
**Field Name:** `list_updated_datetime`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Klaviyo campaigns.
### Delivery
| | |
| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Email recipients
| Total number of recipients the email was sent to
**Field Name:** `total_recipients`
**Type:** metric |
| Emails received
| Number of emails successfully delivered to recipients
**Field Name:** `received_email`
**Type:** metric |
| Emails bounced
| Number of emails that bounced (hard or soft bounces)
**Field Name:** `bounced_email`
**Type:** metric |
| Email bounce rate
| Percentage of emails that bounced (bounced / recipients)
**Field Name:** `bounce_rate`
**Type:** metric |
| Emails dropped
| Number of emails that were dropped before sending
**Field Name:** `dropped_email`
**Type:** metric |
### Engagement
| | |
| ---------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| Emails opened
| Total number of email opens (can include multiple opens per person)
**Field Name:** `opened_email`
**Type:** metric |
| Emails opened (unique)
| Number of unique recipients who opened the email
**Field Name:** `opened_email_unique`
**Type:** metric |
| Email open rate
| Percentage of recipients who opened the email (unique opens / recipients)
**Field Name:** `open_rate`
**Type:** metric |
| Emails clicked
| Total number of clicks on links in the email
**Field Name:** `clicked_email`
**Type:** metric |
| Emails clicked (unique)
| Number of unique recipients who clicked a link in the email
**Field Name:** `clicked_email_unique`
**Type:** metric |
| Email click rate
| Percentage of recipients who clicked a link (unique clicks / recipients)
**Field Name:** `click_rate`
**Type:** metric |
### Unsubscribe & Spam
| | |
| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Emails marked as spam
| Number of recipients who marked the email as spam
**Field Name:** `marked_email_as_spam`
**Type:** metric |
| Email spam rate
| Percentage of recipients who marked as spam (spam / recipients)
**Field Name:** `spam_rate`
**Type:** metric |
| Unsubscribes
| Number of recipients who unsubscribed
**Field Name:** `unsubscribed`
**Type:** metric |
| Unsubscribe rate
| Percentage of recipients who unsubscribed (unsubscribes / recipients)
**Field Name:** `unsubscribe_rate`
**Type:** metric |
### Shopify eCommerce
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Placed Order (count)
| Total number of orders placed attributed to this email (Shopify integration)
**Field Name:** `shopify_placed_order`
**Type:** metric |
| Placed Order (value)
| Total revenue from orders placed attributed to this email (Shopify integration)
**Field Name:** `shopify_placed_order_value`
**Type:** metric |
| Placed Order (unique)
| Number of unique recipients who placed an order (Shopify integration)
**Field Name:** `shopify_placed_order_unique`
**Type:** metric |
| Ordered Product (count)
| Total number of products ordered attributed to this email (Shopify integration)
**Field Name:** `shopify_ordered_product`
**Type:** metric |
| Ordered Product (value)
| Total value of products ordered attributed to this email (Shopify integration)
**Field Name:** `shopify_ordered_product_value`
**Type:** metric |
| Checkout Started (count)
| Number of checkouts started attributed to this email (Shopify integration)
**Field Name:** `shopify_checkout_started`
**Type:** metric |
| Checkout Started (value)
| Total value of checkouts started attributed to this email (Shopify integration)
**Field Name:** `shopify_checkout_started_value`
**Type:** metric |
| Cancelled Order (count)
| Number of cancelled orders attributed to this email (Shopify integration)
**Field Name:** `shopify_cancelled_order`
**Type:** metric |
| Cancelled Order (value)
| Total value of cancelled orders attributed to this email (Shopify integration)
**Field Name:** `shopify_cancelled_order_value`
**Type:** metric |
| Fulfilled Order (count)
| Number of fulfilled orders attributed to this email (Shopify integration)
**Field Name:** `shopify_fulfilled_order`
**Type:** metric |
| Fulfilled Order (value)
| Total value of fulfilled orders attributed to this email (Shopify integration)
**Field Name:** `shopify_fulfilled_order_value`
**Type:** metric |
| Refunded Order (count)
| Number of refunded orders attributed to this email (Shopify integration)
**Field Name:** `shopify_refunded_order`
**Type:** metric |
| Refunded Order (value)
| Total value of refunded orders attributed to this email (Shopify integration)
**Field Name:** `shopify_refunded_order_value`
**Type:** metric |
| Average Order Value
| Average order value (total order value / number of orders) attributed to this email
**Field Name:** `shopify_average_order_value`
**Type:** metric |
| Checkout-to-Order Rate
| Percentage of started checkouts that resulted in a placed order
**Field Name:** `shopify_checkout_start_to_order_rate`
**Type:** metric |
| Checkout Completed (count)
| Number of completed checkouts (same as placed orders)
**Field Name:** `shopify_checkout_completed`
**Type:** metric |
| Conversion Rate
| Percentage of unique recipients who placed an order (unique orders / recipients)
**Field Name:** `shopify_conversion_rate`
**Type:** metric |
| Revenue per Recipient
| Average revenue per email recipient (total order value / recipients)
**Field Name:** `shopify_revenue_per_recipient`
**Type:** metric |
### Lists & Segments
| | |
| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Members count
| Current number of profiles in the list or segment. Snapshot of right now - to track growth, schedule a daily query with append mode.
**Field Name:** `list_profile_count`
**Type:** metric |
***
## Related
Browse all platforms
HubSpot metrics & dimensions
Mailchimp metrics & dimensions
Google Merchant Center metrics & dimensions
# LinkedIn Ads Metrics & Dimensions
Source: https://support.detrics.io/data-source/linkedin-ads/fields
Complete reference for LinkedIn Ads dimensions and metrics
**Last updated:** August 6, 2026
61 dimensions
103 metrics
This reference covers all available dimensions and metrics for LinkedIn Ads data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your LinkedIn Ads data.
### Most Used
| | |
| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Account ID
| Advertiser Account Unique Identifier.
**Field Name:** `account.id`
**Type:** dimension |
| Account Name
| Advertiser Account Name.
**Field Name:** `account.name`
**Type:** dimension |
| Campaign Group ID
| Unique Identifier of the upper level in the campaigns hierarchy. It can contain multiple campaigns.
**Field Name:** `campaign_group.id`
**Type:** dimension |
| Campaign Group Name
| Name of the upper level in the campaigns hierarchy. It can contain multiple campaigns.
**Field Name:** `campaign_group.name`
**Type:** dimension |
| Campaign ID
| Unique Identifier of the mid level in the campaigns hierarchy. It can contain multiple ads.
**Field Name:** `campaign.id`
**Type:** dimension |
| Campaign Name
| Name of the mid level in the campaigns hierarchy. It can contain multiple ads.
**Field Name:** `campaign.name`
**Type:** dimension |
| Ad ID
| Unique Identifier of the lowest level in the campaigns hierarchy.
**Field Name:** `ad.id`
**Type:** dimension |
| Ad Name
| Name of the lowest level in the campaigns hierarchy.
**Field Name:** `ad.name`
**Type:** dimension |
| Ad URL
| The URL to visualize this Ad's data.
**Field Name:** `ad.url`
**Type:** dimension |
### Creative
| | |
| -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Creative Title
| The title or text of the LinkedIn post being promoted by this ad creative. Resolved from the post referenced by the ad.
**Field Name:** `ad.creative_title`
**Type:** dimension |
| Creative Destination URL
| Destination URL the ad sends users to (landing page of the promoted post).
**Field Name:** `ad.creative_url`
**Type:** dimension |
| Creative CTA Label
| Call-to-action button of the promoted post, e.g. LEARN\_MORE or REGISTER.
**Field Name:** `ad.creative_cta_label`
**Type:** dimension |
| Creative Description
| Description of the article promoted by the ad (article ads only).
**Field Name:** `ad.creative_description`
**Type:** dimension |
| Creative Text
| Full text (commentary) of the LinkedIn post being promoted by this ad creative.
**Field Name:** `ad.creative_text`
**Type:** dimension |
| Creative Media Type
| Type of the promoted content: ARTICLE, IMAGE, VIDEO, MULTI\_IMAGE, CAROUSEL, DOCUMENT or SPONSORED\_MESSAGE.
**Field Name:** `ad.creative_media_type`
**Type:** dimension |
| Creative Published At
| Date and time when the promoted post was published.
**Field Name:** `ad.creative_published_at`
**Type:** dimension |
| Creative Thumbnail URL
| Thumbnail URL of the creative (image, article thumbnail or video cover). Note: LinkedIn media URLs are temporary and expire after a few weeks.
**Field Name:** `ad.creative_thumbnail_url`
**Type:** dimension |
| Creative Download URL
| Download URL of the creative media (full-size image or video file). Note: LinkedIn media URLs are temporary and expire after a few weeks.
**Field Name:** `ad.creative_download_url`
**Type:** dimension |
| Creative Video Duration (Seconds)
| Duration of the promoted video in seconds (video ads only).
**Field Name:** `ad.creative_video_duration`
**Type:** dimension |
### Account
| | |
| ------------------- | ----------------------------------------------------------------------- |
| Status
|
**Field Name:** `account.status`
**Type:** dimension |
| Currency
|
**Field Name:** `account.currency`
**Type:** dimension |
### Campaign Group
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Total Budget
|
**Field Name:** `campaign_group.total_budget`
**Type:** dimension |
| Status
| Can be one of: ACTIVE, ARCHIVED, CANCELLED, DRAFT, PAUSED, PENDING\_DELETION, REMOVED.
**Field Name:** `campaign_group.status`
**Type:** dimension |
| Start Time
|
**Field Name:** `campaign_group.start_time`
**Type:** dimension |
| End Time
|
**Field Name:** `campaign_group.end_time`
**Type:** dimension |
### Campaign
| | |
| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Status
| Can be one of: ACTIVE, ARCHIVED, CANCELLED, DRAFT, PAUSED, PENDING\_DELETION, REMOVED.
**Field Name:** `campaign.status`
**Type:** dimension |
| Daily Budget
|
**Field Name:** `campaign.daily_budget`
**Type:** dimension |
| Total Budget
|
**Field Name:** `campaign.total_budget`
**Type:** dimension |
| Start Time
|
**Field Name:** `campaign.start_time`
**Type:** dimension |
| End Time
|
**Field Name:** `campaign.end_time`
**Type:** dimension |
| Campaign Type
| Can be one of: TEXT\_AD, SPONSORED\_UPDATES, SPONSORED\_INMAILS, DYNAMIC.
**Field Name:** `campaign.type`
**Type:** dimension |
| Objective Type
| Can be one of: BRAND\_AWARENESS, WEBSITE, ENGAGEMENT, VIDEO\_VIEW, LEAD\_GENERATION, WEBSITE\_CONVERSION, JOB\_APPLICANT, TALENT\_LEAD.
**Field Name:** `campaign.objective_type`
**Type:** dimension |
| Ad Format
| On Linkedin Ads, the ad format is set at the campaign level.
**Field Name:** `campaign.ad_format`
**Type:** dimension |
### Conversions
| | |
| ------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversion ID
| Unique identifier for the conversion.
**Field Name:** `conversion.id`
**Type:** dimension |
| Conversion Name
| Name of the conversion.
**Field Name:** `conversion.name`
**Type:** dimension |
| Conversion Type
| Type of the conversion.
**Field Name:** `conversion.type`
**Type:** dimension |
| Conversion Enabled
| Indicates if the conversion is enabled.
**Field Name:** `conversion.enabled`
**Type:** dimension |
| Conversion Method
| Method used for conversion tracking.
**Field Name:** `conversion.conversionMethod`
**Type:** dimension |
| Conversion Value Type
| Type of value assigned to the conversion.
**Field Name:** `conversion.valueType`
**Type:** dimension |
| Attribution Type
| Attribution model used for the conversion.
**Field Name:** `conversion.attributionType`
**Type:** dimension |
| Post Click Attribution Window
| Post-click attribution window size in days.
**Field Name:** `conversion.postClickAttributionWindowSize`
**Type:** dimension |
| View Through Attribution Window
| View-through attribution window size in days.
**Field Name:** `conversion.viewThroughAttributionWindowSize`
**Type:** dimension |
| Conversion Currency Code
| Currency code for the conversion value.
**Field Name:** `conversion.valueCurrencyCode`
**Type:** dimension |
| Conversion Value Amount
| Monetary value assigned to the conversion.
**Field Name:** `conversion.valueAmount`
**Type:** dimension |
| Conversion Created Date
| Date when the conversion was created.
**Field Name:** `conversion.created`
**Type:** dimension |
| Conversion Last Modified
| Date when the conversion was last modified.
**Field Name:** `conversion.lastModified`
**Type:** dimension |
| Last Callback Date
| Date of the last callback for the conversion.
**Field Name:** `conversion.lastCallbackAt`
**Type:** dimension |
| Image Pixel Tag
| Image pixel tag for conversion tracking.
**Field Name:** `conversion.imagePixelTag`
**Type:** dimension |
| Conversion Campaigns
| Campaigns associated with the conversion.
**Field Name:** `conversion.campaigns`
**Type:** dimension |
| Conversion URL Rules
| URL rules defined for the conversion.
**Field Name:** `conversion.urlRules`
**Type:** dimension |
### Demographics
| | |
| ------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Company Size
| Size of the company based on number of employees.
**Field Name:** `demographic.company_size`
**Type:** dimension |
| Industry
| Industry classification of the target audience.
**Field Name:** `demographic.industry`
**Type:** dimension |
| Seniority
| Seniority level of the target audience.
**Field Name:** `demographic.seniority`
**Type:** dimension |
| Job Function
| Job function of the target audience.
**Field Name:** `demographic.job_function`
**Type:** dimension |
| Country
| Country of the target audience.
**Field Name:** `demographic.country`
**Type:** dimension |
| Region
| Geographic region of the target audience.
**Field Name:** `demographic.region`
**Type:** dimension |
| Job Title
| Job title of the audience members who saw or engaged with your ads. LinkedIn reports the top 100 job titles per creative per day; values with fewer than 3 events are omitted. Reach metrics are not available with this breakdown.
**Field Name:** `demographic.job_title`
**Type:** dimension |
| Member Company
| Company of the audience members who saw or engaged with your ads (account-based marketing view). LinkedIn reports the top 100 companies per creative per day; values with fewer than 3 events are omitted. Reach metrics are not available with this breakdown.
**Field Name:** `demographic.company`
**Type:** dimension |
### Delivery
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Device Type
| Device type the ad made an impression on (Mobile App, Mobile Web, Desktop Web). Reach metrics are not available with this breakdown.
**Field Name:** `demographic.device`
**Type:** dimension |
| Serving Location
| Where the ad was served: on LinkedIn (on-site) or on the LinkedIn Audience Network (off-site).
**Field Name:** `demographic.serving_location`
**Type:** dimension |
| Placement
| Ad placement: LinkedIn, Offsite (Audience Network) or Offsite In-Stream. Reach metrics are not available with this breakdown.
**Field Name:** `demographic.placement`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your LinkedIn Ads campaigns.
### Most Used
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Cost
| Cost in the account's local currency.
**Field Name:** `costInLocalCurrency`
**Type:** metric |
| Cost In USD
| Cost converted to USD.
**Field Name:** `costInUsd`
**Type:** metric |
| Clicks
| The count of chargeable clicks. Despite not charging for clicks for CPM campaigns, this field still represents those clicks for which Linkedin would otherwise charge advertisers based on objective (for example, clicks to view the landing page or company page).
**Field Name:** `clicks`
**Type:** metric |
| Impressions
| This is the count of impressions for Sponsored Content and sends for Sponsored Messaging.
**Field Name:** `impressions`
**Type:** metric |
| Unique Impressions
| The estimated number of unique member accounts with at least one impression. Some offsite traffic is excluded from this metric, so it may be underestimated for campaigns running on the LinkedIn Audience Network. This metric is only available when the number of days in the date range is less than or equal to 92 days.
**Field Name:** `approximateUniqueImpressions`
**Type:** metric |
| Landing Page Clicks
| The count of clicks which take the user to the creative landing page.
**Field Name:** `landingPageClicks`
**Type:** metric |
| Company Page Clicks
| The count of clicks to view the company page.
**Field Name:** `companyPageClicks`
**Type:** metric |
| CTR
| The percentage of impressions that resulted in clicks.
**Field Name:** `ctr`
**Type:** metric |
| CPC
| The average cost per click.
**Field Name:** `cpc`
**Type:** metric |
| CPM
| The cost per thousand impressions.
**Field Name:** `cpm`
**Type:** metric |
### Conversions
| | |
| ----------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Website Conversions
| Total number of times users took a desired action after clicking on or seeing your ad.
**Field Name:** `externalWebsiteConversions`
**Type:** metric |
| Website Post Click Conversions
| Total number of times users took a desired action after clicking on your ad.
**Field Name:** `externalWebsitePostClickConversions`
**Type:** metric |
| Website Post View Conversions
| Total number of times users took a desired action after seeing your ad.
**Field Name:** `externalWebsitePostViewConversions`
**Type:** metric |
| Conversion Value
| Value of the conversions in the account's local currency based on rules defined by the advertiser. Conversion value is set by the advertiser at a per conversion level, and aggregated across the query time range.
**Field Name:** `conversionValueInLocalCurrency`
**Type:** metric |
### Lead Generation
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Mail Contact Info Shares
| The number of times users shared contact info through the One Click Lead Gen for Sponsored Messaging ads.
**Field Name:** `leadGenerationMailContactInfoShares`
**Type:** metric |
| Mail Interested Clicks
| The count of Sponsored Messaging ad recipients who clicked to demonstrate interest.
**Field Name:** `leadGenerationMailInterestedClicks`
**Type:** metric |
| Form Opens
| The count of times users opened the lead form for a One Click Lead Gen campaign.
**Field Name:** `oneClickLeadFormOpens`
**Type:** metric |
| One Click Leads
| The count of leads generated through One Click Lead Gen.
**Field Name:** `oneClickLeads`
**Type:** metric |
| Valid Work Email Leads
| The count of leads with a valid work email that does not use an established free or personal email domain.
**Field Name:** `validWorkEmailLeads`
**Type:** metric |
| Talent Leads
| Number of leads captured through a talent media campaign.
**Field Name:** `talentLeads`
**Type:** metric |
| Qualified Leads
| The number of leads that meet specific qualification criteria.
**Field Name:** `qualifiedLeads`
**Type:** metric |
| Cost Per Qualified Lead
| The average cost per qualified lead generated.
**Field Name:** `costPerQualifiedLead`
**Type:** metric |
### Sponsored Content
| | |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------- |
| Likes
| The count of likes. Sponsored Content only.
**Field Name:** `likes`
**Type:** metric |
| Comment Likes
| The count of likes of a comment. Sponsored Content only.
**Field Name:** `commentLikes`
**Type:** metric |
| Comments
| The count of comments. Sponsored Content only.
**Field Name:** `comments`
**Type:** metric |
| Shares
| The count of shares. Sponsored Content only.
**Field Name:** `shares`
**Type:** metric |
| Follows
| The count of follows. Sponsored Content and Follower Ads only.
**Field Name:** `follows`
**Type:** metric |
### Sponsored Messaging
| | |
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Action Clicks
| The count of clicks on the action button of the Sponsored Messaging ad.
**Field Name:** `actionClicks`
**Type:** metric |
| Ad Unit Clicks
| The count of clicks on the ad unit displayed alongside the Sponsored Messaging ad.
**Field Name:** `adUnitClicks`
**Type:** metric |
| Opens
| The count of opens of Sponsored Messaging ads.
**Field Name:** `opens`
**Type:** metric |
| Sends
| The count of sends of Sponsored Messaging ads.
**Field Name:** `sends`
**Type:** metric |
| Text Url Clicks
| The count of clicks on any links (anchor tags) that were included in the body of the Sponsored Messaging ad.
**Field Name:** `textUrlClicks`
**Type:** metric |
### Cards
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Card Clicks
| The number of clicks for each card of a carousel ad. The first card click of the carousel ad results in an immediate Card Click and Click, whereas scrolling to other cards and clicking will count as additional Card Click.
**Field Name:** `cardClicks`
**Type:** metric |
| Card Impressions
| The number of impressions shown for each card of a carousel ad. The first card of the carousel ad results in an immediate cardImpression and impression, whereas scrolling to other cards will count as additional Card Impression.
**Field Name:** `cardImpressions`
**Type:** metric |
### Document Ads
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Document Completions
| The number of times users reached 100% of the document’s length, including those that skipped to this point. This metric is only available for document ads and not all dimensions.
**Field Name:** `documentCompletions`
**Type:** metric |
| First Quartile Completions
| The number of times users reached the first quartile of the document’s length, including those that skipped to this point. This metric is only available for document ads and not all dimensions.
**Field Name:** `documentFirstQuartileCompletions`
**Type:** metric |
| Midpoint Completions
| The number of times users reached the second quartile of the document’s length, including those that skipped to this point. This metric is only available for document ads and not all dimensions.
**Field Name:** `documentMidpointCompletions`
**Type:** metric |
| Third Quartile Completions
| The number of times users reached the third quartile of the document’s length, including those that skipped to this point. This metric is only available for document ads and not all dimensions.
**Field Name:** `documentThirdQuartileCompletions`
**Type:** metric |
### Engagement
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Download Clicks
| The number of times users have indicated the intent to download the media in an ad by clicking the download icon. This may or may not result in an actual download (e.g. if the user rejects a browser download prompt). This metric is only available for ad formats supporting media downloads.
**Field Name:** `downloadClicks`
**Type:** metric |
| Positive Reactions
| The count of positive reactions on Sponsored Content which can capture, like, interest, praise, and other responses.
**Field Name:** `reactions`
**Type:** metric |
| Other Engagements
| The count of user interactions with the ad unit that do not fit into any other more specific category.
**Field Name:** `otherEngagements`
**Type:** metric |
| Registrations
| The number of times a member has registered for an event or seminar after viewing or clicking on an ad which has a LinkedIn event landing page. This includes gross registrations and does not account for a user unregistering.
**Field Name:** `registrations`
**Type:** metric |
| Total Engagements
| The count of all user interactions with the ad unit.
**Field Name:** `totalEngagements`
**Type:** metric |
| Subscription Clicks
| The number of clicks on subscription related content.
**Field Name:** `subscriptionClicks`
**Type:** metric |
| Average Dwell Time
| The average time users spend viewing the ad content.
**Field Name:** `averageDwellTime`
**Type:** metric |
| Post Click Registrations
| Registrations that occurred after clicking on the ad.
**Field Name:** `postClickRegistrations`
**Type:** metric |
| Post View Registrations
| Registrations that occurred after viewing the ad.
**Field Name:** `postViewRegistrations`
**Type:** metric |
### Conversation Ads
| | |
| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Headline Clicks
| The number of times members clicked on the headline of conversation ads.
**Field Name:** `headlineClicks`
**Type:** metric |
| Headline Impressions
| The number of times members were shown the headline of conversation ads.
**Field Name:** `headlineImpressions`
**Type:** metric |
### Job Applications
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Job Applications
| The number of times a member completed a job application after viewing or clicking on an ad. Currently, this metric is broken down into postViewJobApplications (if the member applied after viewing the ad) and postClickJobApplications (if the member applied after clicking the ad).
**Field Name:** `jobApplications`
**Type:** metric |
| Job Apply Clicks
| The number of times a member clicked on the job’s apply button on an LinkedIn jobs page after viewing or clicking on an ad which has a LinkedIn job landing page. Currently, this metric is broken down into postViewJobApplyClicks (if the member performed the action after viewing the ad) and postClickJobApplyClicks (if the member performed the action after clicking the ad).
**Field Name:** `jobApplyClicks`
**Type:** metric |
| Post Click Job Applications
| Job applications that occurred after clicking on the ad.
**Field Name:** `postClickJobApplications`
**Type:** metric |
| Post Click Job Apply Clicks
| Job apply clicks that occurred after clicking on the ad.
**Field Name:** `postClickJobApplyClicks`
**Type:** metric |
| Post View Job Applications
| Job applications that occurred after viewing the ad.
**Field Name:** `postViewJobApplications`
**Type:** metric |
| Post View Job Apply Clicks
| Job apply clicks that occurred after viewing the ad.
**Field Name:** `postViewJobApplyClicks`
**Type:** metric |
### Videos
| | |
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Full Screen Plays
| Number of times members click on the full screen button or on the video (mobile only) to go into full screen mode.
**Field Name:** `fullScreenPlays`
**Type:** metric |
| Video Completions
| The count of video ads that played 97-100% of the video. This includes watches that skipped to this point if the serving location is ON\_SITE.
**Field Name:** `videoCompletions`
**Type:** metric |
| First Quartile Completions
| The count of video ads that played through the first quartile of the video. This includes watches that skipped to this point if the serving location is ON\_SITE.
**Field Name:** `videoFirstQuartileCompletions`
**Type:** metric |
| Midpoint Completions
| The count of video ads that played through the midpoint of the video. This includes watches that skipped to this point if the serving location is ON\_SITE.
**Field Name:** `videoMidpointCompletions`
**Type:** metric |
| Video Starts
| The count of video ads that were started by users.
**Field Name:** `videoStarts`
**Type:** metric |
| Third Quartile Completions
| The count of video ads that played through the third quartile of the video. This includes watches that skipped to this point if the serving location is ON\_SITE.
**Field Name:** `videoThirdQuartileCompletions`
**Type:** metric |
| Video Views
| A video ad playing for at least 2 continuous seconds 50% in-view, or a click on the CTA, whichever comes first. An interaction with the video (like going to fullscreen mode) does not count as a view.
**Field Name:** `videoViews`
**Type:** metric |
### Reach
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Audience Penetration
| The percentage of the target audience reached by the campaign.
**Field Name:** `audiencePenetration`
**Type:** metric |
| Approximate Member Reach
| The estimated number of LinkedIn members reached by the campaign.
**Field Name:** `approximateMemberReach`
**Type:** metric |
### Viral Metrics
| | |
| -------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Viral Clicks
| Clicks generated through viral sharing of the content.
**Field Name:** `viralClicks`
**Type:** metric |
| Viral Impressions
| Impressions generated through viral sharing of the content.
**Field Name:** `viralImpressions`
**Type:** metric |
| Viral Likes
| Likes generated through viral sharing of the content.
**Field Name:** `viralLikes`
**Type:** metric |
| Viral Shares
| Shares generated through viral sharing of the content.
**Field Name:** `viralShares`
**Type:** metric |
| Viral Comments
| Comments generated through viral sharing of the content.
**Field Name:** `viralComments`
**Type:** metric |
| Viral Follows
| Follows generated through viral sharing of the content.
**Field Name:** `viralFollows`
**Type:** metric |
| Viral Reactions
| Reactions generated through viral sharing of the content.
**Field Name:** `viralReactions`
**Type:** metric |
| Viral Other Engagements
| Other engagements generated through viral sharing of the content.
**Field Name:** `viralOtherEngagements`
**Type:** metric |
| Viral Total Engagements
| Total engagements generated through viral sharing of the content.
**Field Name:** `viralTotalEngagements`
**Type:** metric |
| Viral Video Views
| Video views generated through viral sharing of the content.
**Field Name:** `viralVideoViews`
**Type:** metric |
| Viral Video Completions
| Video completions generated through viral sharing of the content.
**Field Name:** `viralVideoCompletions`
**Type:** metric |
| Viral Video Starts
| Video starts generated through viral sharing of the content.
**Field Name:** `viralVideoStarts`
**Type:** metric |
| Viral Video First Quartile Completions
| Video first quartile completions generated through viral sharing of the content.
**Field Name:** `viralVideoFirstQuartileCompletions`
**Type:** metric |
| Viral Video Midpoint Completions
| Video midpoint completions generated through viral sharing of the content.
**Field Name:** `viralVideoMidpointCompletions`
**Type:** metric |
| Viral Video Third Quartile Completions
| Video third quartile completions generated through viral sharing of the content.
**Field Name:** `viralVideoThirdQuartileCompletions`
**Type:** metric |
| Viral Full Screen Plays
| Full screen plays generated through viral sharing of the content.
**Field Name:** `viralFullScreenPlays`
**Type:** metric |
| Viral Landing Page Clicks
| Landing page clicks generated through viral sharing of the content.
**Field Name:** `viralLandingPageClicks`
**Type:** metric |
| Viral Company Page Clicks
| Company page clicks generated through viral sharing of the content.
**Field Name:** `viralCompanyPageClicks`
**Type:** metric |
| Viral External Website Conversions
| External website conversions generated through viral sharing of the content.
**Field Name:** `viralExternalWebsiteConversions`
**Type:** metric |
| Viral External Website Post Click Conversions
| External website post click conversions generated through viral sharing of the content.
**Field Name:** `viralExternalWebsitePostClickConversions`
**Type:** metric |
| Viral External Website Post View Conversions
| External website post view conversions generated through viral sharing of the content.
**Field Name:** `viralExternalWebsitePostViewConversions`
**Type:** metric |
| Viral One Click Lead Form Opens
| One click lead form opens generated through viral sharing of the content.
**Field Name:** `viralOneClickLeadFormOpens`
**Type:** metric |
| Viral One Click Leads
| One click leads generated through viral sharing of the content.
**Field Name:** `viralOneClickLeads`
**Type:** metric |
| Viral Document Completions
| Document completions generated through viral sharing of the content.
**Field Name:** `viralDocumentCompletions`
**Type:** metric |
| Viral Document First Quartile Completions
| Document first quartile completions generated through viral sharing of the content.
**Field Name:** `viralDocumentFirstQuartileCompletions`
**Type:** metric |
| Viral Document Midpoint Completions
| Document midpoint completions generated through viral sharing of the content.
**Field Name:** `viralDocumentMidpointCompletions`
**Type:** metric |
| Viral Document Third Quartile Completions
| Document third quartile completions generated through viral sharing of the content.
**Field Name:** `viralDocumentThirdQuartileCompletions`
**Type:** metric |
| Viral Download Clicks
| Download clicks generated through viral sharing of the content.
**Field Name:** `viralDownloadClicks`
**Type:** metric |
| Viral Job Applications
| Job applications generated through viral sharing of the content.
**Field Name:** `viralJobApplications`
**Type:** metric |
| Viral Job Apply Clicks
| Job apply clicks generated through viral sharing of the content.
**Field Name:** `viralJobApplyClicks`
**Type:** metric |
| Viral Registrations
| Registrations generated through viral sharing of the content.
**Field Name:** `viralRegistrations`
**Type:** metric |
| Viral Post Click Job Applications
| Post click job applications generated through viral sharing of the content.
**Field Name:** `viralPostClickJobApplications`
**Type:** metric |
| Viral Post Click Job Apply Clicks
| Post click job apply clicks generated through viral sharing of the content.
**Field Name:** `viralPostClickJobApplyClicks`
**Type:** metric |
| Viral Post Click Registrations
| Post click registrations generated through viral sharing of the content.
**Field Name:** `viralPostClickRegistrations`
**Type:** metric |
| Viral Post View Job Applications
| Post view job applications generated through viral sharing of the content.
**Field Name:** `viralPostViewJobApplications`
**Type:** metric |
| Viral Post View Job Apply Clicks
| Post view job apply clicks generated through viral sharing of the content.
**Field Name:** `viralPostViewJobApplyClicks`
**Type:** metric |
| Viral Post View Registrations
| Post view registrations generated through viral sharing of the content.
**Field Name:** `viralPostViewRegistrations`
**Type:** metric |
| Viral Card Clicks
| Card clicks generated through viral sharing of the content.
**Field Name:** `viralCardClicks`
**Type:** metric |
| Viral Card Impressions
| Card impressions generated through viral sharing of the content.
**Field Name:** `viralCardImpressions`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
Google Ads metrics & dimensions
TikTok Ads metrics & dimensions
# LinkedIn Ads Troubleshooting
Source: https://support.detrics.io/data-source/linkedin-ads/troubleshooting
Complete troubleshooting guide for LinkedIn Ads integration
**Last updated:** July 28, 2025
Having trouble connecting your LinkedIn Ads account to Detrics? This comprehensive guide will help you diagnose and resolve the most common connection issues.
## Understanding LinkedIn Access Expiration
Access to LinkedIn Ads can expire for various reasons. These are the most common causes of connection issues:
Changing your LinkedIn password automatically revokes access tokens for
connected third-party applications.
LinkedIn may revoke access during routine security reviews, especially for
recently connected applications like Detrics.
Due to LinkedIn's privacy policy, access must be renewed every two months.
This is beyond our control and unfortunately required by the platform.
**Solution:** When access expires, you'll need to **reconnect your LinkedIn Ads account to Detrics** through the connection setup process. This re-establishes the authentication and renews the access tokens.
**Important:** Once you reconnect LinkedIn Ads, all your existing queries and Looker Studio dashboards linked to your LinkedIn accounts will automatically start working again. The reconnection process fixes all connections at once - you don't need to recreate your queries or dashboards.
## Fix Persistent Connection Issues (Full Reset)
If reconnecting doesn't resolve your issues, follow these steps for a complete reset. This will fix all your LinkedIn Ads queries and dashboards at once.
Go to [LinkedIn Settings & Privacy](https://www.linkedin.com/mypreferences/d/data-sharing-for-permitted-services) and remove Detrics from your permitted services.
Open a new Google Spreadsheet or [click here](https://sheets.new) to create a new sheet directly.
Fire up Detrics: Select *Extensions* > *Detrics* > *Launch*
Click on *"Connect Data Source"*
Select LinkedIn Ads from the list of available data sources and complete the LinkedIn authentication process to re-establish access to your Campaign Manager account.
## Shared Connection Between Google Sheets and Looker Studio
Google Sheets and Looker Studio share the same LinkedIn Ads connection. This means:
* **Single reconnection fixes both platforms:** When you reconnect LinkedIn Ads through Google Sheets, your Looker Studio dashboards are automatically fixed too
* **No duplicate setup needed:** You only need to reconnect once, regardless of which platform you primarily use
### Alternative: Reconnect Through Looker Studio
Looker Studio users can also reconnect LinkedIn Ads directly through Looker Studio:
1. Open your Looker Studio dashboard that uses LinkedIn Ads data
2. Click on any chart showing connection errors
3. Select "Reconnect" when prompted
4. Complete the LinkedIn Ads authentication process
5. All your LinkedIn Ads queries in both Looker Studio and Google Sheets will be restored
**Need help?** If errors persist after following these steps, please reach out to [support@detrics.io](mailto:support@detrics.io)
# Magento Metrics & Dimensions
Source: https://support.detrics.io/data-source/magento-orders/fields
Complete reference for Magento dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Magento data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Magento data.
### Order
| | |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order Increment ID
| Human-readable incrementing identifier for each order
**Field Name:** `orderIncrementId`
**Type:** dimension |
| Order Status
| Current status of the order (e.g., pending, processing, complete, canceled, closed)
**Field Name:** `orderStatus`
**Type:** dimension |
| Order State
| High-level state of the order (new, processing, complete, canceled, holded, closed)
**Field Name:** `orderState`
**Type:** dimension |
| Order Currency
| ISO code of the currency the customer paid in
**Field Name:** `orderCurrency`
**Type:** dimension |
| Order Base Currency
| ISO code of the store base currency used for base\_\* totals
**Field Name:** `orderBaseCurrency`
**Type:** dimension |
| Order Created Date
| Date the order was created (YYYY-MM-DD, UTC)
**Field Name:** `orderCreatedDate`
**Type:** dimension |
| Order Created Datetime
| Timestamp the order was created (UTC)
**Field Name:** `orderCreatedDatetime`
**Type:** dimension |
| Order Updated Date
| Date of the last order update (YYYY-MM-DD, UTC)
**Field Name:** `orderUpdatedDate`
**Type:** dimension |
| Order Updated Datetime
| Timestamp of the last order update (UTC)
**Field Name:** `orderUpdatedDatetime`
**Type:** dimension |
| Payment Method
| Identifier of the payment method used for the order
**Field Name:** `paymentMethod`
**Type:** dimension |
| Shipping Method
| Human-readable description of the shipping method
**Field Name:** `shippingMethod`
**Type:** dimension |
| Coupon Code
| Coupon or promo code applied to the order, if any
**Field Name:** `couponCode`
**Type:** dimension |
### Customer
| | |
| ---------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Customer ID
| Unique identifier of the customer (empty for guest checkouts)
**Field Name:** `customerId`
**Type:** dimension |
| Customer Group ID
| Identifier of the customer group the customer belongs to
**Field Name:** `customerGroupId`
**Type:** dimension |
| Customer Prefix
| Prefix for the customer's name (e.g., Mr., Ms.)
**Field Name:** `customerPrefix`
**Type:** dimension |
| Customer First Name
| First name of the customer
**Field Name:** `customerFirstName`
**Type:** dimension |
| Customer Middle Name
| Middle name of the customer
**Field Name:** `customerMiddleName`
**Type:** dimension |
| Customer Last Name
| Last name of the customer
**Field Name:** `customerLastName`
**Type:** dimension |
| Customer Name Suffix
| Suffix for the customer's name (e.g., Jr., Sr., III)
**Field Name:** `customerNameSuffix`
**Type:** dimension |
| Customer Gender
| Gender of the customer (Male, Female, Not Specified)
**Field Name:** `customerGender`
**Type:** dimension |
| Customer Date of Birth
| Date of birth of the customer
**Field Name:** `customerDob`
**Type:** dimension |
| Customer Email
| Email address of the customer
**Field Name:** `customerEmail`
**Type:** dimension |
| Customer Is Guest
| Whether the order was placed as a guest checkout
**Field Name:** `customerIsGuest`
**Type:** dimension |
| Customer Tax/VAT Number
| Tax or VAT identification number of the customer
**Field Name:** `customerTaxVatNumber`
**Type:** dimension |
### Billing Address
| | |
| ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Billing First Name
| First name on the billing address
**Field Name:** `billingFirstName`
**Type:** dimension |
| Billing Middle Name
| Middle name on the billing address
**Field Name:** `billingMiddleName`
**Type:** dimension |
| Billing Last Name
| Last name on the billing address
**Field Name:** `billingLastName`
**Type:** dimension |
| Billing Company
| Company on the billing address
**Field Name:** `billingCompany`
**Type:** dimension |
| Billing Address Type
| Type of the billing address (usually "billing")
**Field Name:** `billingAddressType`
**Type:** dimension |
| Billing Street
| Street address on the billing address (multiple lines joined)
**Field Name:** `billingStreet`
**Type:** dimension |
| Billing City
| City on the billing address
**Field Name:** `billingCity`
**Type:** dimension |
| Billing Region
| Region / state on the billing address
**Field Name:** `billingRegion`
**Type:** dimension |
| Billing Region ID
| Magento numeric region identifier for the billing address
**Field Name:** `billingRegionId`
**Type:** dimension |
| Billing Region Code
| Region code on the billing address (e.g., CO-BOG)
**Field Name:** `billingRegionCode`
**Type:** dimension |
| Billing Postal Code
| Postal code on the billing address
**Field Name:** `billingPostalCode`
**Type:** dimension |
| Billing Country ID
| ISO two-letter country code on the billing address
**Field Name:** `billingCountryId`
**Type:** dimension |
| Billing Email
| Email address on the billing address
**Field Name:** `billingEmail`
**Type:** dimension |
| Billing Telephone
| Telephone number on the billing address
**Field Name:** `billingTelephone`
**Type:** dimension |
| Billing Fax
| Fax number on the billing address
**Field Name:** `billingFax`
**Type:** dimension |
### Shipping Address
| | |
| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| Shipping First Name
| First name on the shipping address
**Field Name:** `shippingFirstName`
**Type:** dimension |
| Shipping Middle Name
| Middle name on the shipping address
**Field Name:** `shippingMiddleName`
**Type:** dimension |
| Shipping Last Name
| Last name on the shipping address
**Field Name:** `shippingLastName`
**Type:** dimension |
| Shipping Company
| Company on the shipping address
**Field Name:** `shippingCompany`
**Type:** dimension |
| Shipping Address Type
| Type of the shipping address (usually "shipping")
**Field Name:** `shippingAddressType`
**Type:** dimension |
| Shipping Street
| Street address on the shipping address (multiple lines joined)
**Field Name:** `shippingStreet`
**Type:** dimension |
| Shipping City
| City on the shipping address
**Field Name:** `shippingCity`
**Type:** dimension |
| Shipping Region
| Region / state on the shipping address
**Field Name:** `shippingRegion`
**Type:** dimension |
| Shipping Region ID
| Magento numeric region identifier for the shipping address
**Field Name:** `shippingRegionId`
**Type:** dimension |
| Shipping Region Code
| Region code on the shipping address (e.g., CO-BOG)
**Field Name:** `shippingRegionCode`
**Type:** dimension |
| Shipping Postal Code
| Postal code on the shipping address
**Field Name:** `shippingPostalCode`
**Type:** dimension |
| Shipping Country ID
| ISO two-letter country code on the shipping address
**Field Name:** `shippingCountryId`
**Type:** dimension |
| Shipping Email
| Email address on the shipping address
**Field Name:** `shippingEmail`
**Type:** dimension |
| Shipping Telephone
| Telephone number on the shipping address
**Field Name:** `shippingTelephone`
**Type:** dimension |
| Shipping Fax
| Fax number on the shipping address
**Field Name:** `shippingFax`
**Type:** dimension |
### Store
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Store Domain
| Hostname of the Magento store the order was placed on
**Field Name:** `storeDomain`
**Type:** dimension |
| Store ID
| Magento numeric identifier of the store view
**Field Name:** `storeId`
**Type:** dimension |
| Store Name
| Website > Store > Store View hierarchy name as configured in Magento Admin
**Field Name:** `storeName`
**Type:** dimension |
### Items
| | |
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Item ID
| Unique identifier of the order line item
**Field Name:** `itemId`
**Type:** dimension |
| Item Order ID
| Identifier of the order the line item belongs to
**Field Name:** `itemOrderId`
**Type:** dimension |
| Item Quote Item ID
| Identifier of the cart line item that this order item was converted from
**Field Name:** `itemQuoteItemId`
**Type:** dimension |
| Item SKU
| SKU of the product on the line item
**Field Name:** `itemSku`
**Type:** dimension |
| Product ID
| Magento product ID
**Field Name:** `productId`
**Type:** dimension |
| Product Name
| Display name of the product
**Field Name:** `productName`
**Type:** dimension |
| Product Type
| Type of the product (simple, configurable, bundle, grouped, virtual, downloadable)
**Field Name:** `productType`
**Type:** dimension |
| Item Created Date
| Date the order line item was created
**Field Name:** `itemCreatedDate`
**Type:** dimension |
| Item Created Datetime
| Timestamp the order line item was created
**Field Name:** `itemCreatedDatetime`
**Type:** dimension |
| Item Updated Date
| Date of the last line item update
**Field Name:** `itemUpdatedDate`
**Type:** dimension |
| Item Updated Datetime
| Timestamp of the last line item update
**Field Name:** `itemUpdatedDatetime`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Magento campaigns.
### Order
| | |
| -------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| Orders
| Total number of orders
**Field Name:** `orders`
**Type:** metric |
| Order Quantity
| Total quantity of items in the orders
**Field Name:** `orderQuantity`
**Type:** metric |
| Order Subtotal
| Order subtotal before tax and discounts (order currency)
**Field Name:** `orderSubtotal`
**Type:** metric |
| Order Subtotal (Incl. Tax)
| Order subtotal including tax (order currency)
**Field Name:** `orderSubtotalInclTax`
**Type:** metric |
| Order Discount
| Total discount amount applied to the order (order currency)
**Field Name:** `orderDiscount`
**Type:** metric |
| Order Tax
| Total tax amount on the order (order currency)
**Field Name:** `orderTax`
**Type:** metric |
| Order Shipping & Handling
| Total shipping and handling charges (order currency)
**Field Name:** `orderShippingAndHandling`
**Type:** metric |
| Order Grand Total
| Final order total after adjustments (order currency)
**Field Name:** `orderGrandTotal`
**Type:** metric |
| Order Grand Total (Base Currency)
| Final order total converted to store base currency
**Field Name:** `orderBaseGrandTotal`
**Type:** metric |
| Order Total Paid
| Total amount paid on the order (order currency)
**Field Name:** `orderTotalPaid`
**Type:** metric |
| Order Total Refunded
| Total amount refunded on the order (order currency)
**Field Name:** `orderTotalRefunded`
**Type:** metric |
| Order Total Due
| Amount still due on the order (order currency)
**Field Name:** `orderTotalDue`
**Type:** metric |
| Order Weight
| Total weight of the order
**Field Name:** `orderWeight`
**Type:** metric |
### Customer
| | |
| -------------------- | -------------------------------------------------------------------------------------------------- |
| Customers
| Count of customers on returned orders
**Field Name:** `customers`
**Type:** metric |
### Items
| | |
| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Item Original Price
| Original unit price before discounts (order currency)
**Field Name:** `itemOriginalPrice`
**Type:** metric |
| Item Price
| Unit price of the item after discounts (order currency)
**Field Name:** `itemPrice`
**Type:** metric |
| Item Quantity Ordered
| Quantity of the item ordered
**Field Name:** `itemQuantityOrdered`
**Type:** metric |
| Item Quantity Invoiced
| Quantity of the item invoiced
**Field Name:** `itemQuantityInvoiced`
**Type:** metric |
| Item Quantity Shipped
| Quantity of the item shipped
**Field Name:** `itemQuantityShipped`
**Type:** metric |
| Item Quantity Refunded
| Quantity of the item refunded
**Field Name:** `itemQuantityRefunded`
**Type:** metric |
| Item Quantity Returned
| Quantity of the item physically returned by the customer
**Field Name:** `itemQuantityReturned`
**Type:** metric |
| Item Quantity Canceled
| Quantity of the item canceled
**Field Name:** `itemQuantityCanceled`
**Type:** metric |
| Item Subtotal
| Row subtotal for the item before tax and discounts
**Field Name:** `itemSubtotal`
**Type:** metric |
| Item Tax Amount
| Tax amount applied to the item row
**Field Name:** `itemTaxAmount`
**Type:** metric |
| Item Tax Percent
| Tax percentage applied to the item
**Field Name:** `itemTaxPercent`
**Type:** metric |
| Item Tax Canceled
| Tax amount canceled on the item (when parts of the order are canceled)
**Field Name:** `itemTaxCanceled`
**Type:** metric |
| Item Discount Amount
| Discount amount applied to the item row
**Field Name:** `itemDiscountAmount`
**Type:** metric |
| Item Discount Tax Compensation Canceled
| Discount tax compensation amount canceled on the item (Magento tax rollback)
**Field Name:** `itemDiscountTaxCompensationCanceled`
**Type:** metric |
| Item Total
| Final total for the item row after tax and discounts
**Field Name:** `itemTotal`
**Type:** metric |
| Item Refund Amount
| Amount refunded on the item row
**Field Name:** `itemRefundAmount`
**Type:** metric |
| Item Weight
| Weight of a single unit of the item
**Field Name:** `itemWeight`
**Type:** metric |
***
## Related
Browse all platforms
shopify-store metrics & dimensions
WooCommerce metrics & dimensions
vtex-store metrics & dimensions
# Mailchimp Metrics & Dimensions
Source: https://support.detrics.io/data-source/mailchimp/fields
Complete reference for Mailchimp email marketing dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Mailchimp data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Mailchimp data.
### Campaign
| | |
| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| The unique identifier for the email campaign
**Field Name:** `campaignId`
**Type:** dimension |
| Campaign Name
| The name/title of the email campaign
**Field Name:** `campaignName`
**Type:** dimension |
| Campaign Type
| The type of campaign (e.g., regular, plaintext, absplit)
**Field Name:** `campaignType`
**Type:** dimension |
| Campaign Status
| The current status of the campaign (e.g., sent, draft)
**Field Name:** `campaignStatus`
**Type:** dimension |
| Campaign Created
| The date the campaign was created
**Field Name:** `campaignCreatedDate`
**Type:** dimension |
| Campaign Send Date
| The date the campaign was sent
**Field Name:** `campaignSendDate`
**Type:** dimension |
| Campaign Last Open
| The date of the last email open for the campaign
**Field Name:** `campaignLastOpen`
**Type:** dimension |
| Campaign Last Click
| The date of the last link click for the campaign
**Field Name:** `campaignLastClick`
**Type:** dimension |
### Email Content
| | |
| ----------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| Subject Line
| The email subject line
**Field Name:** `subjectLine`
**Type:** dimension |
| Preview Text
| The email preview text shown in inbox
**Field Name:** `previewText`
**Type:** dimension |
| From Name
| The sender display name
**Field Name:** `fromName`
**Type:** dimension |
| Reply To
| The reply-to email address
**Field Name:** `replyTo`
**Type:** dimension |
| Content Type
| The content type of the email (e.g., template, html)
**Field Name:** `contentType`
**Type:** dimension |
### List
| | |
| --------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| List ID
| The unique identifier for the audience/list (shared between campaigns and lists)
**Field Name:** `listId`
**Type:** dimension |
| List Name
| The name of the audience/list (shared between campaigns and lists)
**Field Name:** `listName`
**Type:** dimension |
| List Rating
| The list quality rating from Mailchimp (1-5)
**Field Name:** `listRating`
**Type:** dimension |
| List Visibility
| The list visibility setting (pub or prv)
**Field Name:** `listVisibility`
**Type:** dimension |
| List Created
| The date the list was created
**Field Name:** `listCreatedDate`
**Type:** dimension |
| Last List Subscribed
| The date of the most recent subscription to the list
**Field Name:** `listLastSubDate`
**Type:** dimension |
| Last List Unsubscribed
| The date of the most recent unsubscription from the list
**Field Name:** `listLastUnsubDate`
**Type:** dimension |
### List Growth
| | |
| -------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| List ID
| The list ID for the growth history record
**Field Name:** `growthListId`
**Type:** dimension |
| List Name
| The list name for the growth history record
**Field Name:** `growthListName`
**Type:** dimension |
| Month
| The month of the growth history data (YYYY-MM format)
**Field Name:** `growthMonth`
**Type:** dimension |
### Industry Benchmarks
| | |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------ |
| Industry Type
| The industry type used for benchmark comparison
**Field Name:** `industryType`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Mailchimp campaigns.
### Delivery
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Emails Sent
| Total number of emails sent for the campaign
**Field Name:** `emailsSent`
**Type:** metric |
| Emails Delivered
| Number of emails delivered (sent minus bounces)
**Field Name:** `emailsDelivered`
**Type:** metric |
| Emails Cancelled
| Number of emails cancelled before delivery
**Field Name:** `emailsCancelled`
**Type:** metric |
| Delivery Rate
| Percentage of emails successfully delivered (delivered / sent)
**Field Name:** `deliveryRate`
**Type:** metric |
### Engagement
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| Unique Opens
| Number of unique recipients who opened the email
**Field Name:** `uniqueOpens`
**Type:** metric |
| Total Opens
| Total number of email opens (includes multiple opens per person)
**Field Name:** `opensTotal`
**Type:** metric |
| Open Rate
| Percentage of recipients who opened the email (unique opens / delivered)
**Field Name:** `openRate`
**Type:** metric |
| Unique Clicks
| Number of unique recipients who clicked a link
**Field Name:** `uniqueClicks`
**Type:** metric |
| Total Clicks
| Total number of clicks on links in the email
**Field Name:** `clicksTotal`
**Type:** metric |
| Unique Subscriber Clicks
| Number of unique subscribers who clicked
**Field Name:** `uniqueSubscriberClicks`
**Type:** metric |
| Click Rate
| Percentage of recipients who clicked (unique clicks / delivered)
**Field Name:** `clickRate`
**Type:** metric |
### Bounces
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Bounces
| Total number of bounced emails (hard + soft)
**Field Name:** `bounces`
**Type:** metric |
| Hard Bounces
| Number of permanent delivery failures
**Field Name:** `hardBounces`
**Type:** metric |
| Soft Bounces
| Number of temporary delivery failures
**Field Name:** `softBounces`
**Type:** metric |
| Syntax Errors
| Number of emails with address syntax errors
**Field Name:** `syntaxErrors`
**Type:** metric |
| Bounce Rate
| Percentage of emails that bounced (bounces / sent)
**Field Name:** `bounceRate`
**Type:** metric |
| Hard Bounce Rate
| Percentage of hard bounces (hard bounces / sent)
**Field Name:** `hardBounceRate`
**Type:** metric |
| Soft Bounce Rate
| Percentage of soft bounces (soft bounces / sent)
**Field Name:** `softBounceRate`
**Type:** metric |
### Unsubscribe & Spam
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------- |
| Abuse Reports
| Number of spam/abuse reports received
**Field Name:** `abuseReports`
**Type:** metric |
| Unsubscribes
| Number of recipients who unsubscribed
**Field Name:** `unsubscribes`
**Type:** metric |
| Unsubscription Rate
| Percentage of recipients who unsubscribed (unsubscribes / sent)
**Field Name:** `unsubscriptionRate`
**Type:** metric |
### Forwards & Social
| | |
| -------------------------- | ----------------------------------------------------------------------------------------------------------- |
| Forwards
| Number of times the email was forwarded
**Field Name:** `forwardsCount`
**Type:** metric |
| Forward Opens
| Number of opens from forwarded emails
**Field Name:** `forwardsOpens`
**Type:** metric |
| Facebook Likes
| Number of Facebook likes from the campaign
**Field Name:** `facebookLikes`
**Type:** metric |
| Unique Likes
| Number of unique Facebook likes
**Field Name:** `uniqueLikes`
**Type:** metric |
| Recipient Likes
| Number of likes from email recipients
**Field Name:** `recipientLikes`
**Type:** metric |
### E-commerce
| | |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------- |
| Total Orders
| Total number of orders attributed to the campaign
**Field Name:** `ecommerceTotalOrders`
**Type:** metric |
| Total Spent
| Total amount spent by customers from the campaign
**Field Name:** `ecommerceTotalSpent`
**Type:** metric |
| Total Revenue
| Total revenue attributed to the campaign
**Field Name:** `ecommerceTotalRevenue`
**Type:** metric |
### Industry Benchmarks
| | |
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Industry Open Rate
| Average open rate for this industry
**Field Name:** `industryOpenRate`
**Type:** metric |
| Industry Click Rate
| Average click rate for this industry
**Field Name:** `industryClickRate`
**Type:** metric |
| Industry Bounce Rate
| Average bounce rate for this industry
**Field Name:** `industryBounceRate`
**Type:** metric |
| Industry Unopen Rate
| Average unopen rate for this industry
**Field Name:** `industryUnopenRate`
**Type:** metric |
| Industry Unsubscription Rate
| Average unsubscription rate for this industry
**Field Name:** `industryUnsubRate`
**Type:** metric |
| Industry Abuse Report Rate
| Average abuse report rate for this industry
**Field Name:** `industryAbuseRate`
**Type:** metric |
### List Stats
| | |
| -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| Member Count
| Total number of active members in the list
**Field Name:** `memberCount`
**Type:** metric |
| Member Count Since Last Send
| Number of new members since the last campaign was sent
**Field Name:** `memberCountSinceSend`
**Type:** metric |
| Cleaned Count
| Total number of cleaned (removed) contacts in the list
**Field Name:** `cleanedCount`
**Type:** metric |
| Cleaned Count Since Last Send
| Number of contacts cleaned since the last campaign was sent
**Field Name:** `cleanedCountSinceSend`
**Type:** metric |
| List Unsubscribe Count
| Total number of unsubscribes from the list
**Field Name:** `listUnsubscribeCount`
**Type:** metric |
| Unsubscribe Count Since Last Send
| Number of unsubscribes since the last campaign was sent
**Field Name:** `unsubscribeCountSinceSend`
**Type:** metric |
| Campaign Count
| Number of campaigns sent to this list
**Field Name:** `campaignCount`
**Type:** metric |
| List Open Rate
| Average open rate for campaigns sent to this list
**Field Name:** `listOpenRate`
**Type:** metric |
| List Click Rate
| Average click rate for campaigns sent to this list
**Field Name:** `listClickRate`
**Type:** metric |
| List Subscription Rate
| Average subscription rate for the list
**Field Name:** `listAvgSubRate`
**Type:** metric |
| List Unsubscription Rate
| Average unsubscription rate for the list
**Field Name:** `listAvgUnsubRate`
**Type:** metric |
| Target Subscription Rate
| Target subscription rate for the list
**Field Name:** `listTargetSubRate`
**Type:** metric |
### List Growth
| | |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------- |
| Opt-in Members
| Number of members who opted in during this month
**Field Name:** `optins`
**Type:** metric |
| Imported Members
| Number of members imported during this month
**Field Name:** `imports`
**Type:** metric |
| Subscribed Members
| Total subscribed members at the end of this month
**Field Name:** `subscribed`
**Type:** metric |
| Unsubscribed Members
| Number of members who unsubscribed during this month
**Field Name:** `unsubscribed`
**Type:** metric |
| Reconfirmed Members
| Number of members who reconfirmed during this month
**Field Name:** `reconfirmed`
**Type:** metric |
| Cleaned Members
| Number of members cleaned (removed) during this month
**Field Name:** `cleaned`
**Type:** metric |
| Pending Members
| Number of members pending confirmation during this month
**Field Name:** `pending`
**Type:** metric |
| Deleted Members
| Number of members deleted during this month
**Field Name:** `deleted`
**Type:** metric |
| Transactional Subscribers
| Number of transactional subscribers during this month
**Field Name:** `transactional`
**Type:** metric |
***
## Related
Browse all platforms
Klaviyo metrics & dimensions
HubSpot metrics & dimensions
Google Merchant Center metrics & dimensions
# Mercado Ads Metrics & Dimensions
Source: https://support.detrics.io/data-source/mercado-ads/fields
Complete reference for Mercado Ads dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Mercado Ads data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Mercado Ads data.
### Most Used
| | |
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Advertiser ID
| Unique identifier of the advertiser who invests budget to create and distribute ads.
**Field Name:** `advertiser_id`
**Type:** dimension |
| Advertiser Name
| Name of the advertiser account.
**Field Name:** `advertiser_name`
**Type:** dimension |
| Campaign ID
| Unique identifier for the advertising campaign.
**Field Name:** `campaign_id`
**Type:** dimension |
| Campaign Name
| Name assigned to the advertising campaign.
**Field Name:** `campaign_name`
**Type:** dimension |
| Ad Type
| Type of advertisement format being used: Brand Ads, Product Ads & Display Ads
**Field Name:** `ad_type`
**Type:** dimension |
### Common Dimensions
| | |
| ---------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Site ID
| Country identifier (e.g., MLB for Brazil, MLM for Mexico, MLA for Argentina).
**Field Name:** `site_id`
**Type:** dimension |
| Country Name
| Name of the country where the campaign is running.
**Field Name:** `country_name`
**Type:** dimension |
| Campaign Currency
| Currency used for the campaign budget and costs.
**Field Name:** `campaign_currency`
**Type:** dimension |
| Campaign Status
| Current state of the campaign. Values: active, paused, disabled.
**Field Name:** `campaign_status`
**Type:** dimension |
| Campaign Budget
| Daily budget allocated for the campaign. Unused budget rolls over to following days within the month.
**Field Name:** `campaign_budget`
**Type:** dimension |
### Product Ads
| | |
| ------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign Strategy
| Campaign objective strategy. Values: PROFITABILITY (5-15% ACOS), INCREASE (15-30% ACOS), VISIBILITY (>30% ACOS).
**Field Name:** `campaign_strategy`
**Type:** dimension |
| Campaign Channel
| Sales channel for the campaign. Values: marketplace (Mercado Libre), mshops (Mercado Shops).
**Field Name:** `campaign_channel`
**Type:** dimension |
| Campaign ACOS Target
| Target Advertising Cost of Sales percentage. Algorithm uses this to optimize bidding and budget allocation.
**Field Name:** `campaign_acos_target`
**Type:** dimension |
| Campaign ACOS Top Search Target
| Target ACOS specifically for top search positions.
**Field Name:** `campaign_acos_top_search_target`
**Type:** dimension |
| Campaign Salesforce Event ID
|
**Field Name:** `campaign_salesforce_event_id`
**Type:** dimension |
| Campaign Automatic Budget
| Indicates if the campaign uses automatic budget management.
**Field Name:** `campaign_automatic_budget`
**Type:** dimension |
| Campaign Last Updated
| Date and time when the campaign was last modified.
**Field Name:** `campaign_last_updated`
**Type:** dimension |
| Campaign Date Created
| Date and time when the campaign was created.
**Field Name:** `campaign_date_created`
**Type:** dimension |
### Brand Ads
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Campaign Type
| Type of Brand Ads campaign. Values: custom (user-managed), automatic (platform-managed).
**Field Name:** `campaign_type`
**Type:** dimension |
| Campaign Headline
| Title or tagline displayed in the Brand Ads advertising space.
**Field Name:** `campaign_headline`
**Type:** dimension |
| Campaign End Date
| Date when the campaign is scheduled to end.
**Field Name:** `campaign_end_date`
**Type:** dimension |
| Campaign Moderation Status
| Review status of the campaign content.
**Field Name:** `campaign_moderation_status`
**Type:** dimension |
### Display Ads
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign Goal
| Campaign objective. Values: awareness, consideration, conversion, guaranteed.
**Field Name:** `campaign_goal`
**Type:** dimension |
| Campaign Start Date
| Date when the campaign begins running.
**Field Name:** `campaign_start_date`
**Type:** dimension |
### Product
| | |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Product Item ID
| Unique identifier of the product item.
**Field Name:** `product_item_id`
**Type:** dimension |
| Product Title
| Name or title of the advertised product.
**Field Name:** `product_title`
**Type:** dimension |
| Product Price
| Current selling price of the product.
**Field Name:** `product_price`
**Type:** dimension |
| Product Thumbnail
| Image Thumbnail IMAGE sheets formula
**Field Name:** `product_thumbnail`
**Type:** dimension |
| Product Thumbnail URL
| URL of the product thumbnail image.
**Field Name:** `product_thumbnail_url`
**Type:** dimension |
| Product Status
| Current status of the product listing. Values: active, paused, hold, idle, delegated, revoked.
**Field Name:** `product_status`
**Type:** dimension |
| Product Permalink
| Permanent URL link to the product listing page.
**Field Name:** `product_permalink`
**Type:** dimension |
| Product Brand Value ID
| Unique identifier of the product brand.
**Field Name:** `product_brand_value_id`
**Type:** dimension |
| Product Brand Value Name
| Brand name associated with the product.
**Field Name:** `product_brand_value_name`
**Type:** dimension |
| Product Condition
| Condition of the product. Values: new, used.
**Field Name:** `product_condition`
**Type:** dimension |
| Product Tags
| Tags or labels associated with the product.
**Field Name:** `product_tags`
**Type:** dimension |
| Product Has Discount
| Indicates if the product has an active discount. Based on difference between regular and sale price.
**Field Name:** `product_has_discount`
**Type:** dimension |
| Product Catalog Listing
| Indicates if the product is part of the catalog listing.
**Field Name:** `product_catalog_listing`
**Type:** dimension |
| Product Logistic Type
| Type of shipping logistics for the product.
**Field Name:** `product_logistic_type`
**Type:** dimension |
| Product Listing Type ID
| Type of product listing (e.g., gold\_pro, gold\_special).
**Field Name:** `product_listing_type_id`
**Type:** dimension |
| Product Domain ID
| Product category domain identifier.
**Field Name:** `product_domain_id`
**Type:** dimension |
| Product Buy Box Winner
| Indicates if the product wins the catalog buy box. Prioritized in catalog competition.
**Field Name:** `product_buy_box_winner`
**Type:** dimension |
| Product Channel
| Sales channel for the product. Values: marketplace, mshops.
**Field Name:** `product_channel`
**Type:** dimension |
| Product Official Store ID
| Identifier of the official store selling the product.
**Field Name:** `product_official_store_id`
**Type:** dimension |
| Product Current Level
| Seller reputation level for the product.
**Field Name:** `product_current_level`
**Type:** dimension |
| Product Deferred Stock
| Indicates if product has manufacturing time. Products with immediate stock are prioritized.
**Field Name:** `product_deferred_stock`
**Type:** dimension |
| Product User Product ID
|
**Field Name:** `product_user_product_id`
**Type:** dimension |
| Product User Product Name
|
**Field Name:** `product_user_product_name`
**Type:** dimension |
| Product Recommended
| Product Ads recommendation flag. Indicates good performance potential if advertising is activated.
**Field Name:** `product_recommended`
**Type:** dimension |
| Product Date Created
| Date when the product listing was created.
**Field Name:** `product_date_created`
**Type:** dimension |
### Keyword
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Keyword Term
| Search term or keyword phrase used for campaign targeting.
**Field Name:** `keyword_term`
**Type:** dimension |
| Keyword Type
| Type of keyword. Values: custom (user-defined), suggested (platform-recommended).
**Field Name:** `keyword_type`
**Type:** dimension |
| Keyword Match Type
| How closely the search query must match the keyword. Values: phrase, exact, broad.
**Field Name:** `keyword_match_type`
**Type:** dimension |
| Keyword Is Negative
| Indicates if keyword is negative (campaign won't show for this keyword).
**Field Name:** `keyword_is_negative`
**Type:** dimension |
| Keyword Goal CPC Max
| Maximum cost-per-click bid for the keyword. Falls back to campaign CPC if not set.
**Field Name:** `keyword_goal_cpc_max`
**Type:** dimension |
| Keyword Is Deleted
| Indicates if the keyword has been deleted from the campaign.
**Field Name:** `keyword_is_deleted`
**Type:** dimension |
### Line Item
| | |
| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Line Item ID
| Unique identifier for the line item within a campaign.
**Field Name:** `line_item_id`
**Type:** dimension |
| Line Item Name
| Name of the line item configuration.
**Field Name:** `line_item_name`
**Type:** dimension |
| Line Item Status
| Current status of the line item. Values: active, paused.
**Field Name:** `line_item_status`
**Type:** dimension |
| Line Item Type
| Type based on creative format. Values: Display, Social (vertical video), Video (horizontal).
**Field Name:** `line_item_type`
**Type:** dimension |
| Line Item Start Date
| Date when the line item begins running.
**Field Name:** `line_item_start_date`
**Type:** dimension |
| Line Item End Date
| Date when the line item stops running.
**Field Name:** `line_item_end_date`
**Type:** dimension |
### Creative
| | |
| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Creative ID
| Unique identifier for the creative asset.
**Field Name:** `creative_id`
**Type:** dimension |
| Creative Name
| Name of the creative element.
**Field Name:** `creative_name`
**Type:** dimension |
| Creative Status
| Review status of the creative. Values: active, in review, rejected.
**Field Name:** `creative_status`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Mercado Ads campaigns.
### Most Used
| | |
| ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Cost
| Total amount spent on advertising. Also referred to as consumed budget or investment.
**Field Name:** `cost`
**Type:** metric |
| Clicks
| Number of times users clicked on your ads.
**Field Name:** `clicks`
**Type:** metric |
| Impressions
| Number of times your ads were displayed to users.
**Field Name:** `impressions`
**Type:** metric |
| CPC
| Cost Per Click - average amount paid for each click. Formula: cost / clicks.
**Field Name:** `cpc`
**Type:** metric |
| CTR
| Click-Through Rate - percentage of impressions that resulted in clicks. Formula: (clicks / impressions) \* 100.
**Field Name:** `ctr`
**Type:** metric |
| CVR
| Conversion Rate - percentage of clicks that resulted in conversions. Formula: (conversions / clicks) \* 100.
**Field Name:** `cvr`
**Type:** metric |
| ACOS
| Advertising Cost of Sales - advertising spend as percentage of revenue. Formula: (cost / revenue) \* 100.
**Field Name:** `acos`
**Type:** metric |
### Product Ads
| | |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| TACoS
| Total Advertising Cost of Sales - ad spend as a percentage of TOTAL revenue (organic + ad-attributed). Formula: (cost / total revenue) \* 100. Unlike ACoS, which only uses ad-attributed revenue. Product Ads only.
**Field Name:** `tacos`
**Type:** metric |
| Direct Amount
| Revenue from direct sales attributed to your Product Ads.
**Field Name:** `direct_amount`
**Type:** metric |
| Indirect Amount
| Revenue from indirect/assisted sales influenced by your ads.
**Field Name:** `indirect_amount`
**Type:** metric |
| Total Amount
| Total revenue from all sales attributed to your Product Ads (direct + indirect).
**Field Name:** `total_amount`
**Type:** metric |
| Direct Units Quantity
| Number of units sold in direct sales from advertising.
**Field Name:** `direct_units_quantity`
**Type:** metric |
| Indirect Units Quantity
| Number of units sold in indirect/assisted sales from advertising.
**Field Name:** `indirect_units_quantity`
**Type:** metric |
| Units Quantity
| Total units sold attributed to your ads across all purchases.
**Field Name:** `units_quantity`
**Type:** metric |
| Direct Items Quantity
| Number of direct sales transactions from advertising.
**Field Name:** `direct_items_quantity`
**Type:** metric |
| Indirect Items Quantity
| Number of indirect/assisted sales transactions from advertising.
**Field Name:** `indirect_items_quantity`
**Type:** metric |
| Advertising Items Quantity
| Total number of sales transactions attributed to advertising.
**Field Name:** `advertising_items_quantity`
**Type:** metric |
| Organic Units Quantity
| Number of units sold without advertising (organic sales).
**Field Name:** `organic_units_quantity`
**Type:** metric |
| Organic Items Quantity
| Number of sales transactions without advertising (organic sales).
**Field Name:** `organic_items_quantity`
**Type:** metric |
| Organic Units Amount
| Revenue from sales without advertising (organic revenue).
**Field Name:** `organic_units_amount`
**Type:** metric |
| ROAS
| Return on Ad Spend - revenue generated per unit of ad spend. Formula: revenue / cost.
**Field Name:** `roas`
**Type:** metric |
| SOV
| Share of Voice - percentage of advertising sales over total sales.
**Field Name:** `sov`
**Type:** metric |
| Impression Share
| Percentage of impressions won out of total eligible impressions. Shows how often your ads appeared.
**Field Name:** `impression_share`
**Type:** metric |
| Top Impression Share
| Percentage of auctions won in top search positions out of total eligible auctions.
**Field Name:** `top_impression_share`
**Type:** metric |
| Lost Impression Share By Budget
| Percentage of impressions lost due to insufficient budget. Consider increasing budget.
**Field Name:** `lost_impression_share_by_budget`
**Type:** metric |
| Lost Impression Share By Ad Rank
| Percentage of impressions lost due to low ad rank. Consider improving CPC or product quality.
**Field Name:** `lost_impression_share_by_ad_rank`
**Type:** metric |
| ACOS Benchmark
| Target ACOS used by successful ads with good impressions and sales performance.
**Field Name:** `acos_benchmark`
**Type:** metric |
### Brand Ads
| | |
| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
| Attribution Order Conversions
| Number of purchases made after users clicked on your Brand Ads.
**Field Name:** `attribution_order_conversions`
**Type:** metric |
| Attribution Order Amount
| Total revenue from sales attributed to your Brand Ads clicks.
**Field Name:** `attribution_order_amount`
**Type:** metric |
| Leads
| Number of potential buyers who asked questions or contacted via WhatsApp after clicking ads.
**Field Name:** `leads`
**Type:** metric |
| Won Auctions
| Percentage of times a keyword won the auction for ad placement.
**Field Name:** `won_auctions`
**Type:** metric |
### Display Ads
| | |
| ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| CPM
| Cost Per Thousand Impressions - average cost for 1,000 ad impressions.
**Field Name:** `cpm`
**Type:** metric |
| Reach
| Number of unique users who saw your ads.
**Field Name:** `reach`
**Type:** metric |
| Active Views
| Times users viewed the first 6 seconds of Social and Video ads.
**Field Name:** `active_views`
**Type:** metric |
| Completed Views
| Times users watched your complete Social and Video ads.
**Field Name:** `completed_views`
**Type:** metric |
| Average Frequency
| Average number of times a unique user saw your ads.
**Field Name:** `average_frequency`
**Type:** metric |
| Event Time CPA Order
| Cost per order acquisition based on event date. Formula: cost / orders.
**Field Name:** `event_time_cpa_order`
**Type:** metric |
| Event Time CPA PPV
| Cost per product page view based on event date. Formula: cost / page views.
**Field Name:** `event_time_cpa_ppv`
**Type:** metric |
| Event Time ROAS
| Return on ad spend attributed by event date. Formula: revenue / cost.
**Field Name:** `event_time_roas`
**Type:** metric |
| Event Time Units Quantity
| Units sold attributed to the exact date of the action.
**Field Name:** `event_time_units_quantity`
**Type:** metric |
| Event Time Direct Amount
| Direct revenue attributed to the exact date of purchase.
**Field Name:** `event_time_direct_amount`
**Type:** metric |
| Event Time Direct Item Quantity
| Direct sales count attributed to the exact date of purchase.
**Field Name:** `event_time_direct_item_quantity`
**Type:** metric |
| Event Time Attribution PPV
| Product page views after ad interaction, attributed by event date.
**Field Name:** `event_time_attribution_ppv`
**Type:** metric |
| Event Time Attribution Add To Cart
| Add to cart actions after ad interaction, attributed by event date.
**Field Name:** `event_time_attribution_add_to_cart`
**Type:** metric |
| Event Time Attribution Bookmark
| Product bookmarks/favorites after ad interaction, attributed by event date.
**Field Name:** `event_time_attribution_bookmark`
**Type:** metric |
| Event Time Attribution Checkout
| Checkout starts after ad interaction, attributed by event date.
**Field Name:** `event_time_attribution_checkout`
**Type:** metric |
| Event Time Attribution Leads
| Leads generated after ad interaction, attributed by event date.
**Field Name:** `event_time_attribution_leads`
**Type:** metric |
| Event Time CPL
| Cost per lead based on event date. Formula: cost / leads.
**Field Name:** `event_time_cpl`
**Type:** metric |
| Touch Point CPA Order
| Cost per order attributed to ad click/impression date. Formula: cost / orders.
**Field Name:** `touch_point_cpa_order`
**Type:** metric |
| Touch Point CPA PPV
| Cost per page view attributed to ad click/impression date. Formula: cost / page views.
**Field Name:** `touch_point_cpa_ppv`
**Type:** metric |
| Touch Point ROAS
| Return on ad spend attributed to ad click/impression date. Formula: revenue / cost.
**Field Name:** `touch_point_roas`
**Type:** metric |
| Touch Point Units Quantity
| Units sold attributed to the date of ad click or impression.
**Field Name:** `touch_point_units_quantity`
**Type:** metric |
| Touch Point Direct Amount
| Direct revenue attributed to the date of ad click or impression.
**Field Name:** `touch_point_direct_amount`
**Type:** metric |
| Touch Point Direct Item Quantity
| Direct sales count attributed to the date of ad click or impression.
**Field Name:** `touch_point_direct_item_quantity`
**Type:** metric |
| Touch Point Attribution PPV
| Product page views attributed to ad click/impression date.
**Field Name:** `touch_point_attribution_ppv`
**Type:** metric |
| Touch Point Attribution Add To Cart
| Add to cart actions attributed to ad click/impression date.
**Field Name:** `touch_point_attribution_add_to_cart`
**Type:** metric |
| Touch Point Attribution Bookmark
| Product bookmarks attributed to ad click/impression date.
**Field Name:** `touch_point_attribution_bookmark`
**Type:** metric |
| Touch Point Attribution Checkout
| Checkout starts attributed to ad click/impression date.
**Field Name:** `touch_point_attribution_checkout`
**Type:** metric |
| Touch Point Attribution Leads
| Leads generated attributed to ad click/impression date.
**Field Name:** `touch_point_attribution_leads`
**Type:** metric |
| Touch Point CPL
| Cost per lead attributed to ad click/impression date. Formula: cost / leads.
**Field Name:** `touch_point_cpl`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
Google Ads metrics & dimensions
TikTok Ads metrics & dimensions
# Mercado Libre Organic Metrics & Dimensions
Source: https://support.detrics.io/data-source/mercado-organic/fields
Complete reference for Mercado Libre Organic dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Mercado Libre Organic data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Mercado Libre Organic data.
### Account
| | |
| ----------------------- | --------------------------------------------------------------------------------------------------------------- |
| Account ID
| Mercado Libre seller ID.
**Field Name:** `accountId`
**Type:** dimension |
| Account Name
| Mercado Libre seller display name / nickname.
**Field Name:** `accountName`
**Type:** dimension |
### Reputation
| | |
| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Country
| Seller country (AR, BR, MX, etc.).
**Field Name:** `countryId`
**Type:** dimension |
| Site
| Mercado Libre site identifier (e.g., MLA for Argentina, MLB for Brazil, MLM for Mexico).
**Field Name:** `siteId`
**Type:** dimension |
| Seller Experience
| Seller experience level: NEWBIE, INTERMEDIATE, or ADVANCED.
**Field Name:** `sellerExperience`
**Type:** dimension |
| Reputation Level
| Seller reputation level (1\_red, 2\_orange, 3\_yellow, 4\_light\_green, 5\_green).
**Field Name:** `reputationLevel`
**Type:** dimension |
| Power Seller Status
| MercadoLíder/Líder status: silver, gold, platinum, or null.
**Field Name:** `powerSellerStatus`
**Type:** dimension |
| Registration Date
| Date the seller account was created.
**Field Name:** `registrationDate`
**Type:** dimension |
| User Type
| Account type: brand, normal, etc.
**Field Name:** `userType`
**Type:** dimension |
| User Tags
| Comma-separated tags describing the seller (e.g., business, eshop, large\_seller).
**Field Name:** `userTags`
**Type:** dimension |
| Seller Profile URL
| Public URL of the seller profile on Mercado Libre.
**Field Name:** `sellerProfileUrl`
**Type:** dimension |
| Credit Level
| Mercado Libre credit level identifier.
**Field Name:** `creditLevelId`
**Type:** dimension |
| Credit Rank
| Credit rank: newbie, regular, top, etc.
**Field Name:** `creditRank`
**Type:** dimension |
| Mercado Envíos Status
| Whether the seller accepts Mercado Envíos shipping (accepted, not\_accepted).
**Field Name:** `mercadoEnviosStatus`
**Type:** dimension |
| Mercado Pago Account Type
| Mercado Pago account type: personal, business.
**Field Name:** `mercadopagoAccountType`
**Type:** dimension |
| Site Status
| Account status on the site: active, inactive, etc.
**Field Name:** `siteStatus`
**Type:** dimension |
### Items
| | |
| --------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| Item ID
| Mercado Libre listing ID (e.g., MLA1234567890).
**Field Name:** `itemId`
**Type:** dimension |
| Item Title
| Title of the listing.
**Field Name:** `itemTitle`
**Type:** dimension |
| Item Subtitle
| Optional subtitle of the listing.
**Field Name:** `itemSubtitle`
**Type:** dimension |
| Item Category
| Mercado Libre category identifier (e.g., MLA417376).
**Field Name:** `itemCategoryId`
**Type:** dimension |
| Item Domain
| Item domain identifier (e.g., MLA-SPORT\_BRAS).
**Field Name:** `itemDomainId`
**Type:** dimension |
| Official Store ID
| Official store ID if the listing belongs to one.
**Field Name:** `itemOfficialStoreId`
**Type:** dimension |
| Catalog Product ID
| Mercado Libre catalog product identifier if catalog-listed.
**Field Name:** `itemCatalogProductId`
**Type:** dimension |
| Item Condition
| Item condition: new, used, refurbished.
**Field Name:** `itemCondition`
**Type:** dimension |
| Item Status
| Listing status: active, paused, closed.
**Field Name:** `itemStatus`
**Type:** dimension |
| Item Sub-status
| Sub-status (e.g., out\_of\_stock, under\_review).
**Field Name:** `itemSubStatus`
**Type:** dimension |
| Item Listing Type
| Listing type: gold\_special, gold\_pro, etc.
**Field Name:** `itemListingTypeId`
**Type:** dimension |
| Buying Mode
| Buying mode: buy\_it\_now, auction, classified.
**Field Name:** `itemBuyingMode`
**Type:** dimension |
| Item Currency
| Currency the listing is priced in (e.g., ARS, BRL, MXN).
**Field Name:** `itemCurrencyId`
**Type:** dimension |
| Item URL
| Public URL of the listing on Mercado Libre.
**Field Name:** `itemPermalink`
**Type:** dimension |
| Item Thumbnail
| URL of the listing thumbnail image.
**Field Name:** `itemThumbnail`
**Type:** dimension |
| Item Date Created
| Date the listing was created.
**Field Name:** `itemDateCreated`
**Type:** dimension |
| Item Last Updated
| Date the listing was last updated.
**Field Name:** `itemLastUpdated`
**Type:** dimension |
| Item Start Time
| Date the listing started.
**Field Name:** `itemStartTime`
**Type:** dimension |
| Item Stop Time
| Date the listing is scheduled to stop.
**Field Name:** `itemStopTime`
**Type:** dimension |
| Shipping Mode
| Shipping mode (e.g., me2, custom).
**Field Name:** `itemShippingMode`
**Type:** dimension |
| Shipping Logistic Type
| Shipping logistic type (e.g., xd\_drop\_off, fulfillment).
**Field Name:** `itemShippingLogisticType`
**Type:** dimension |
| Item Tags
| Comma-separated listing tags (e.g., good\_quality\_thumbnail, cart\_eligible).
**Field Name:** `itemTags`
**Type:** dimension |
| Item Warranty
| Warranty terms declared by the seller.
**Field Name:** `itemWarranty`
**Type:** dimension |
| Parent Item ID
| Parent item ID if this listing is a variation child.
**Field Name:** `itemParentItemId`
**Type:** dimension |
### Orders
| | |
| ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order ID
| Mercado Libre order identifier.
**Field Name:** `orderId`
**Type:** dimension |
| Pack ID
| Pack identifier (groups multiple orders sharing the same buyer + shipment).
**Field Name:** `packId`
**Type:** dimension |
| Order Status
| Order status: paid, confirmed, cancelled, etc.
**Field Name:** `orderStatus`
**Type:** dimension |
| Order Date Created
| Date the order was created.
**Field Name:** `orderDateCreated`
**Type:** dimension |
| Order Date Closed
| Date the order was closed (payment captured).
**Field Name:** `orderDateClosed`
**Type:** dimension |
| Order Last Updated
| Date the order was last updated.
**Field Name:** `orderLastUpdated`
**Type:** dimension |
| Order Expiration Date
| Date the order expires if unpaid.
**Field Name:** `orderExpirationDate`
**Type:** dimension |
| Order Currency
| Currency used for the order.
**Field Name:** `orderCurrencyId`
**Type:** dimension |
| Order Tags
| Comma-separated order tags (e.g., d2c, pack\_order, paid, delivered).
**Field Name:** `orderTags`
**Type:** dimension |
| Buyer ID
| Mercado Libre buyer identifier.
**Field Name:** `orderBuyerId`
**Type:** dimension |
| Pickup ID
| Pickup identifier when shipping mode uses store pickup.
**Field Name:** `orderPickupId`
**Type:** dimension |
| Shipping ID
| Shipment identifier (can be joined with Mercado Envíos shipping data).
**Field Name:** `orderShippingId`
**Type:** dimension |
| Order Comment
| Optional buyer comment attached to the order.
**Field Name:** `orderComment`
**Type:** dimension |
| Feedback — Purchase Rating
| Buyer-given feedback rating on the purchase (positive/neutral/negative).
**Field Name:** `orderFeedbackPurchaseRating`
**Type:** dimension |
| Feedback — Sale Rating
| Seller-given feedback rating on the sale.
**Field Name:** `orderFeedbackSaleRating`
**Type:** dimension |
| Coupon ID
| Mercado Libre coupon ID applied to the order, if any.
**Field Name:** `orderCouponId`
**Type:** dimension |
| Payment Method
| First payment's method identifier (e.g., account\_money, visa).
**Field Name:** `orderPaymentMethodId`
**Type:** dimension |
| Payment Type
| First payment's type (e.g., account\_money, credit\_card, ticket).
**Field Name:** `orderPaymentType`
**Type:** dimension |
| Payment Status
| First payment's status (approved, pending, rejected).
**Field Name:** `orderPaymentStatus`
**Type:** dimension |
| Payment Date Approved
| Date the payment was approved.
**Field Name:** `orderPaymentDateApproved`
**Type:** dimension |
| First Item Title
| Title of the first item in the order.
**Field Name:** `orderFirstItemTitle`
**Type:** dimension |
| First Item Category
| Category identifier of the first item in the order.
**Field Name:** `orderFirstItemCategoryId`
**Type:** dimension |
### Questions
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| Question ID
| Mercado Libre question identifier.
**Field Name:** `questionId`
**Type:** dimension |
| Question Item ID
| Listing the question was asked about.
**Field Name:** `questionItemId`
**Type:** dimension |
| Question Status
| Question status: ANSWERED, UNANSWERED, BANNED, DELETED, CLOSED\_UNANSWERED.
**Field Name:** `questionStatus`
**Type:** dimension |
| Question Text
| The buyer-written question.
**Field Name:** `questionText`
**Type:** dimension |
| Question Date Created
| Date the question was created.
**Field Name:** `questionDateCreated`
**Type:** dimension |
| Question Answer Text
| The seller-written answer text.
**Field Name:** `questionAnswerText`
**Type:** dimension |
| Question Answer Date
| Date the answer was posted.
**Field Name:** `questionAnswerDate`
**Type:** dimension |
| Question From User ID
| ID of the buyer who asked the question.
**Field Name:** `questionFromUserId`
**Type:** dimension |
| Question Answer Status
| Answer status: ACTIVE, BANNED, DELETED, DISABLED.
**Field Name:** `questionAnswerStatus`
**Type:** dimension |
| Question Tags
| Comma-separated tags on the question.
**Field Name:** `questionTags`
**Type:** dimension |
| Question Deleted From Listing
| 1 if the question is hidden from the listing page, 0 otherwise.
**Field Name:** `questionDeletedFromListing`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Mercado Libre Organic campaigns.
### Questions
| | |
| ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Question Answered
| 1 if the question has been answered, 0 otherwise. Sum across rows for count of answered questions.
**Field Name:** `questionAnswered`
**Type:** metric |
### Reputation
| | |
| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| User Points
| Seller reputation points.
**Field Name:** `userPoints`
**Type:** metric |
| Total Transactions
| Total historic transactions (canceled + completed).
**Field Name:** `totalTransactions`
**Type:** metric |
| Completed Transactions
| Historic completed transactions count.
**Field Name:** `completedTransactions`
**Type:** metric |
| Canceled Transactions
| Historic canceled transactions count.
**Field Name:** `canceledTransactions`
**Type:** metric |
| Positive Ratings
| Historic positive ratings received.
**Field Name:** `positiveRatings`
**Type:** metric |
| Neutral Ratings
| Historic neutral ratings received.
**Field Name:** `neutralRatings`
**Type:** metric |
| Negative Ratings
| Historic negative ratings received.
**Field Name:** `negativeRatings`
**Type:** metric |
| Sales Completed (Last 365d)
| Completed sales in the rolling last 365 days.
**Field Name:** `salesCompletedLast365Days`
**Type:** metric |
| Claims Rate
| Share of orders with buyer claims (last 60 days).
**Field Name:** `claimsRate`
**Type:** metric |
| Claims Value
| Count of orders with claims (last 60 days).
**Field Name:** `claimsValue`
**Type:** metric |
| Delayed Handling Time Rate
| Share of orders with delayed handling (last 60 days).
**Field Name:** `delayedHandlingTimeRate`
**Type:** metric |
| Delayed Handling Time Value
| Count of orders with delayed handling (last 60 days).
**Field Name:** `delayedHandlingTimeValue`
**Type:** metric |
| Cancellations Rate
| Share of orders cancelled by the seller (last 60 days).
**Field Name:** `cancellationsRate`
**Type:** metric |
| Cancellations Value
| Count of seller-cancelled orders (last 60 days).
**Field Name:** `cancellationsValue`
**Type:** metric |
| Confirmed Email
| 1 if the seller email is confirmed, 0 otherwise.
**Field Name:** `confirmedEmail`
**Type:** metric |
### Items
| | |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Item Health
| Mercado Libre listing health score (0-1). Indicates how well-completed the listing is.
**Field Name:** `itemHealth`
**Type:** metric |
| Item Price
| Current listing price.
**Field Name:** `itemPrice`
**Type:** metric |
| Item Base Price
| Base price before any discounts applied.
**Field Name:** `itemBasePrice`
**Type:** metric |
| Item Original Price
| Original listing price before promotional discounts.
**Field Name:** `itemOriginalPrice`
**Type:** metric |
| Available Quantity
| Current stock available for the listing.
**Field Name:** `itemAvailableQuantity`
**Type:** metric |
| Sold Quantity
| Lifetime units sold for the listing.
**Field Name:** `itemSoldQuantity`
**Type:** metric |
| Initial Quantity
| Initial stock of the listing when first published.
**Field Name:** `itemInitialQuantity`
**Type:** metric |
| Catalog Listing
| 1 if the listing is part of a Mercado Libre catalog, 0 otherwise.
**Field Name:** `itemCatalogListing`
**Type:** metric |
| Accepts Mercado Pago
| 1 if the listing accepts Mercado Pago, 0 otherwise.
**Field Name:** `itemAcceptsMercadoPago`
**Type:** metric |
| Free Shipping
| 1 if the listing offers free shipping, 0 otherwise.
**Field Name:** `itemFreeShipping`
**Type:** metric |
| Automatic Relist
| 1 if the listing is configured to auto-relist, 0 otherwise.
**Field Name:** `itemAutomaticRelist`
**Type:** metric |
| Item Picture Count
| Number of pictures attached to the listing.
**Field Name:** `itemPictureCount`
**Type:** metric |
| Item Variation Count
| Number of variations (e.g., size/color combinations) on the listing.
**Field Name:** `itemVariationCount`
**Type:** metric |
| Item Visits
| Lifetime visits to the listing (last \~150 days, ML API limit).
**Field Name:** `itemVisits`
**Type:** metric |
### Reviews
| | |
| --------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Reviews Total
| Total reviews submitted for the listing.
**Field Name:** `reviewsTotal`
**Type:** metric |
| Reviews Rating Average
| Average rating across all reviews (0-5).
**Field Name:** `reviewsRatingAverage`
**Type:** metric |
| Reviews With Comment
| Number of reviews that include a written comment.
**Field Name:** `reviewsWithComment`
**Type:** metric |
| Reviews — 5 Stars
| Count of 5-star reviews.
**Field Name:** `reviewsFiveStars`
**Type:** metric |
| Reviews — 4 Stars
| Count of 4-star reviews.
**Field Name:** `reviewsFourStars`
**Type:** metric |
| Reviews — 3 Stars
| Count of 3-star reviews.
**Field Name:** `reviewsThreeStars`
**Type:** metric |
| Reviews — 2 Stars
| Count of 2-star reviews.
**Field Name:** `reviewsTwoStars`
**Type:** metric |
| Reviews — 1 Star
| Count of 1-star reviews.
**Field Name:** `reviewsOneStar`
**Type:** metric |
### Orders
| | |
| ---------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Order Total Amount
| Total monetary value of the order.
**Field Name:** `orderTotalAmount`
**Type:** metric |
| Order Paid Amount
| Amount actually paid by the buyer.
**Field Name:** `orderPaidAmount`
**Type:** metric |
| Order Shipping Cost
| Shipping cost reported on the first payment.
**Field Name:** `orderShippingCost`
**Type:** metric |
| Order Items Count
| Number of distinct items in the order.
**Field Name:** `orderItemsCount`
**Type:** metric |
| Order Total Quantity
| Sum of unit quantities across all items in the order.
**Field Name:** `orderTotalQuantity`
**Type:** metric |
| Coupon Amount
| Coupon discount amount applied to the order.
**Field Name:** `orderCouponAmount`
**Type:** metric |
| Payment Installments
| Number of installments on the first payment.
**Field Name:** `orderPaymentInstallments`
**Type:** metric |
| Payment Marketplace Fee
| Mercado Pago marketplace fee on the first payment.
**Field Name:** `orderPaymentMarketplaceFee`
**Type:** metric |
| Payment Taxes Amount
| Taxes amount reported on the first payment.
**Field Name:** `orderPaymentTaxesAmount`
**Type:** metric |
| First Item Unit Price
| Unit price of the first item in the order.
**Field Name:** `orderFirstItemUnitPrice`
**Type:** metric |
| First Item Sale Fee
| Mercado Libre commission charged on the first item.
**Field Name:** `orderFirstItemSaleFee`
**Type:** metric |
| Order Total Sale Fee
| Total Mercado Libre commission charged across all items in the order.
**Field Name:** `orderTotalSaleFee`
**Type:** metric |
### Seller Visits
| | |
| ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Seller Total Visits
| Total visits to the seller's storefront in the selected date range. Mercado Libre only returns the aggregate value, so this metric requires the 'All' time aggregation.
**Field Name:** `sellerTotalVisits`
**Type:** metric |
***
## Related
Browse all platforms
Mercado Ads metrics & dimensions
TiendaNube metrics & dimensions
Shopify metrics & dimensions
# Perfit Metrics & Dimensions
Source: https://support.detrics.io/data-source/perfit/fields
Complete reference for Perfit email marketing dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Perfit data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Perfit data.
### Account Details
| | |
| ----------------------- | -------------------------------------------------------------------------------------------- |
| Account Name
| Perfit account name (slug)
**Field Name:** `accountName`
**Type:** dimension |
### Campaign Details
| | |
| ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| Unique identifier for the Perfit campaign
**Field Name:** `campaignId`
**Type:** dimension |
| Campaign Name
| Name of the email campaign
**Field Name:** `campaignName`
**Type:** dimension |
| Campaign State
| Current state of the campaign (e.g., SENT, DRAFT, SCHEDULED)
**Field Name:** `campaignState`
**Type:** dimension |
| Campaign Type
| Type of campaign (e.g., SMART, CLASSIC, AUTOMATION)
**Field Name:** `campaignType`
**Type:** dimension |
| Subject
| Email subject line of the campaign
**Field Name:** `campaignSubject`
**Type:** dimension |
| Launch Mode
| How the campaign was launched (e.g., NOW, SCHEDULED, AUTOMATION)
**Field Name:** `campaignLaunchMode`
**Type:** dimension |
| Launch Date
| Date when the campaign was launched
**Field Name:** `launchDate`
**Type:** dimension |
| Created Date
| Date and time when the campaign was created
**Field Name:** `campaignCreated`
**Type:** dimension |
| Last Modified Date
| Date and time when the campaign was last modified
**Field Name:** `campaignLastModified`
**Type:** dimension |
| Last Open
| Timestamp of the most recent open on this campaign
**Field Name:** `campaignLastOpen`
**Type:** dimension |
| Last Click
| Timestamp of the most recent click on this campaign
**Field Name:** `campaignLastClick`
**Type:** dimension |
| Archived
| Whether the campaign is archived
**Field Name:** `campaignArchived`
**Type:** dimension |
| Thumbnail URL
| URL of the campaign preview thumbnail image
**Field Name:** `campaignThumbnail`
**Type:** dimension |
| Tags
| Comma-separated list of tags applied to the campaign
**Field Name:** `tags`
**Type:** dimension |
### List Details
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| List ID
| Unique identifier for the list
**Field Name:** `listId`
**Type:** dimension |
| List Name
| Name of the contact list
**Field Name:** `listName`
**Type:** dimension |
| List Description
| Description of the list
**Field Name:** `listDescription`
**Type:** dimension |
| List Tags
| Comma-separated list of tags applied to the list
**Field Name:** `listTags`
**Type:** dimension |
| Last Mailed Date
| Date and time when the list was last mailed to
**Field Name:** `listLastMailed`
**Type:** dimension |
| List Created Date
| Date and time when the list was created
**Field Name:** `listCreated`
**Type:** dimension |
### Automation Details
| | |
| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Automation ID
| Unique identifier for the Perfit automation
**Field Name:** `automationId`
**Type:** dimension |
| Automation Name
| Name of the automation flow
**Field Name:** `automationName`
**Type:** dimension |
| Automation Description
| Description / comments configured for the automation
**Field Name:** `automationComments`
**Type:** dimension |
| Automation Trigger
| Event that triggers the automation (e.g., tiendanube.cart.created, optin.confirmed)
**Field Name:** `automationTrigger`
**Type:** dimension |
| Automation Tags
| Comma-separated list of tags applied to the automation
**Field Name:** `automationTags`
**Type:** dimension |
| Automation Types
| Comma-separated list of automation type categories (e.g., abandoned\_cart, welcome, coupon)
**Field Name:** `automationTypes`
**Type:** dimension |
| Automation Enabled
| Whether the automation is currently active
**Field Name:** `automationEnabled`
**Type:** dimension |
| Automation Created Date
| Date and time when the automation was created
**Field Name:** `automationCreated`
**Type:** dimension |
| Automation Last Modified Date
| Date and time when the automation was last modified
**Field Name:** `automationUpdated`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Perfit campaigns.
### Campaign Delivery
| | |
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| Recipients (Intended)
| Total number of recipients the campaign was intended for
**Field Name:** `recipients`
**Type:** metric |
| Sent
| Number of emails actually sent
**Field Name:** `sent`
**Type:** metric |
| Delivered
| Number of emails successfully delivered
**Field Name:** `delivered`
**Type:** metric |
| Bounced
| Total number of bounced emails (hard + soft)
**Field Name:** `bounced`
**Type:** metric |
| Hard Bounced
| Number of hard bounces (permanent delivery failures)
**Field Name:** `hardBounced`
**Type:** metric |
| Soft Bounced
| Number of soft bounces (temporary delivery failures)
**Field Name:** `softBounced`
**Type:** metric |
| Delivered Rate
| Percentage of sent emails that were delivered
**Field Name:** `deliveredRate`
**Type:** metric |
| Bounce Rate
| Percentage of sent emails that bounced
**Field Name:** `bounceRate`
**Type:** metric |
| Hard Bounce Rate
| Percentage of sent emails that hard bounced
**Field Name:** `hardBounceRate`
**Type:** metric |
| Soft Bounce Rate
| Percentage of sent emails that soft bounced
**Field Name:** `softBounceRate`
**Type:** metric |
### Campaign Engagement
| | |
| ----------------------------- | ---------------------------------------------------------------------------------------------------------------- |
| Opened (Unique)
| Number of unique opens (each recipient counted once)
**Field Name:** `opened`
**Type:** metric |
| Opened (Total)
| Total number of opens including repeat opens
**Field Name:** `openedTotal`
**Type:** metric |
| Clicked (Unique)
| Number of unique clicks (each recipient counted once)
**Field Name:** `clicked`
**Type:** metric |
| Clicked (Total)
| Total number of clicks including repeat clicks
**Field Name:** `clickedTotal`
**Type:** metric |
| Open Rate
| Percentage of delivered emails that were opened
**Field Name:** `openRate`
**Type:** metric |
| Click Rate
| Percentage of delivered emails that were clicked
**Field Name:** `clickRate`
**Type:** metric |
| Click-to-Open Rate
| Percentage of opens that resulted in a click
**Field Name:** `clickToOpenRate`
**Type:** metric |
### Campaign Conversions
| | |
| -------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
| Conversions
| Number of conversions attributed to the campaign
**Field Name:** `conversions`
**Type:** metric |
| Revenue
| Total revenue generated from campaign conversions
**Field Name:** `conversionsAmount`
**Type:** metric |
| Conversion Rate
| Percentage of sent emails that led to a conversion
**Field Name:** `conversionRate`
**Type:** metric |
### Campaign Unsubscribes & Spam
| | |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Complained
| Number of spam complaints
**Field Name:** `complained`
**Type:** metric |
| Unsubscribed
| Number of unsubscribes
**Field Name:** `unsubscribed`
**Type:** metric |
| Complaint Rate
| Percentage of sent emails that were reported as spam
**Field Name:** `complaintRate`
**Type:** metric |
| Unsubscribe Rate
| Percentage of sent emails that led to unsubscribes
**Field Name:** `unsubscribeRate`
**Type:** metric |
### Campaign Sharing
| | |
| ------------------------- | -------------------------------------------------------------------------------------------------------------------- |
| Views Online
| Number of online views via the "view in browser" link
**Field Name:** `viewsOnline`
**Type:** metric |
| Shared
| Number of times the campaign was shared
**Field Name:** `shared`
**Type:** metric |
| Shared Opened
| Opens resulting from shared campaign links
**Field Name:** `sharedOpened`
**Type:** metric |
| Shared Clicked
| Clicks resulting from shared campaign links
**Field Name:** `sharedClicked`
**Type:** metric |
### List Contacts
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------ |
| Active Contacts
| Number of active (engaged) contacts in the list
**Field Name:** `activeContacts`
**Type:** metric |
| Total Contacts
| Total number of contacts in the list
**Field Name:** `totalContacts`
**Type:** metric |
| Inactive Contacts
| Number of inactive contacts in the list
**Field Name:** `inactiveContacts`
**Type:** metric |
| Live Contacts
| Number of live (recently engaged) contacts in the list
**Field Name:** `liveContacts`
**Type:** metric |
| Active Contacts %
| Percentage of list members who are active
**Field Name:** `activeContactsRate`
**Type:** metric |
| Inactive Contacts %
| Percentage of list members who are inactive
**Field Name:** `inactiveContactsRate`
**Type:** metric |
| Live Contacts %
| Percentage of list members who are live (recently engaged)
**Field Name:** `liveContactsRate`
**Type:** metric |
| List Quality
| Engagement quality score of the list (0 to 1, higher is better)
**Field Name:** `listQuality`
**Type:** metric |
### Automation Performance
| | |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Triggered
| Lifetime count of times the automation was triggered (INICIADOS in the Perfit UI)
**Field Name:** `automationTriggered`
**Type:** metric |
| In Progress
| Number of executions currently in progress (EN PROCESO in the Perfit UI)
**Field Name:** `automationActive`
**Type:** metric |
| Completed
| Lifetime count of executions that completed all steps (FINALIZADOS in the Perfit UI)
**Field Name:** `automationCompleted`
**Type:** metric |
| Aborted
| Lifetime count of executions aborted (e.g., contact unsubscribed mid-flow)
**Field Name:** `automationAborted`
**Type:** metric |
| Failed
| Lifetime count of executions that failed due to errors
**Field Name:** `automationFailed`
**Type:** metric |
| Exited
| Lifetime count of executions that exited (filtered out by automation conditions)
**Field Name:** `automationExited`
**Type:** metric |
### Automation Engagement
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Sent
| Lifetime count of emails sent by the automation
**Field Name:** `automationSent`
**Type:** metric |
| Opened (Unique)
| Lifetime count of unique opens on automation emails
**Field Name:** `automationOpened`
**Type:** metric |
| Clicked (Unique)
| Lifetime count of unique clicks on automation emails
**Field Name:** `automationClicked`
**Type:** metric |
| Open Rate
| Percentage of automation emails sent that were opened
**Field Name:** `automationOpenRate`
**Type:** metric |
| Click Rate
| Percentage of automation emails sent that were clicked
**Field Name:** `automationClickRate`
**Type:** metric |
| Click-to-Open Rate
| Percentage of automation email opens that resulted in a click
**Field Name:** `automationClickToOpenRate`
**Type:** metric |
### Automation Conversions
| | |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions
| Lifetime count of conversions attributed to the automation (VENTAS count in the Perfit UI)
**Field Name:** `automationConversions`
**Type:** metric |
| Revenue
| Lifetime revenue generated by the automation (VENTAS \$ in the Perfit UI)
**Field Name:** `automationConversionsAmount`
**Type:** metric |
| Conversion Rate
| Percentage of automation triggers that resulted in a conversion
**Field Name:** `automationConversionRate`
**Type:** metric |
***
## Related
Browse all platforms
Mailchimp metrics & dimensions
Klaviyo metrics & dimensions
HubSpot metrics & dimensions
# Pinterest Ads Metrics & Dimensions
Source: https://support.detrics.io/data-source/pinterest-ads/fields
Complete reference for Pinterest Ads dimensions and metrics
**Last updated:** August 6, 2026
88 dimensions
345 metrics
This reference covers all available dimensions and metrics for Pinterest Ads data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Pinterest Ads data.
### Advertiser
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| Advertiser ID
| The unique identifier for the advertiser
**Field Name:** `AD_ACCOUNT_ID`
**Type:** dimension |
| Advertiser Name
| The name of the advertiser
**Field Name:** `AD_ACCOUNT_NAME`
**Type:** dimension |
| Advertiser Country
| The country of the advertiser
**Field Name:** `AD_ACCOUNT_COUNTRY`
**Type:** dimension |
| Currency
| The currency the advertiser uses
**Field Name:** `AD_ACCOUNT_CURRENCY`
**Type:** dimension |
| Owner User ID
| The user ID of the owner of the advertiser
**Field Name:** `ADVERTISER_OWNER_USER_ID`
**Type:** dimension |
| Advertiser Roles
| The roles of the advertiser
**Field Name:** `ADVERTISER_ROLES`
**Type:** dimension |
### Campaign
| | |
| ----------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| The unique identifier of the campaign
**Field Name:** `CAMPAIGN_ID`
**Type:** dimension |
| Campaign Name
| The name of the campaign
**Field Name:** `CAMPAIGN_NAME`
**Type:** dimension |
| Campaign Status
| The status of the campaign
**Field Name:** `CAMPAIGN_STATUS`
**Type:** dimension |
| Campaign Objective Type
| The objective type of the campaign
**Field Name:** `CAMPAIGN_OBJECTIVE_TYPE`
**Type:** dimension |
| Daily Budget
| The daily spend cap of the campaign
**Field Name:** `CAMPAIGN_DAILY_SPEND_CAP`
**Type:** dimension |
| Lifetime Budget
| The lifetime spend cap of the campaign
**Field Name:** `CAMPAIGN_LIFETIME_SPEND_CAP`
**Type:** dimension |
| Order Line ID
| The order line ID of the campaign
**Field Name:** `CAMPAIGN_ORDER_LINE_ID`
**Type:** dimension |
| Campaign Start Date
| The start date and start time of your campaign in UTC
**Field Name:** `CAMPAIGN_START_TIME`
**Type:** dimension |
| Campaign End Date
| The end date and end time of your campaign in UTC
**Field Name:** `CAMPAIGN_END_TIME`
**Type:** dimension |
| Campaign Created Date
| The date the campaign was created
**Field Name:** `CAMPAIGN_CREATED_TIME`
**Type:** dimension |
| Campaign Updated Date
| The date the campaign was last updated
**Field Name:** `CAMPAIGN_UPDATED_TIME`
**Type:** dimension |
| Budget Optimization is Enabled
| Whether the campaign uses budget optimization
**Field Name:** `CAMPAIGN_IS_BUDGET_OPTIMIZATION`
**Type:** dimension |
| Campaign Summary Status
| The overall status of the campaign
**Field Name:** `CAMPAIGN_SUMMARY_STATUS`
**Type:** dimension |
| Performance Plus is Enabled
| Whether the campaign is a Performance Plus campaign
**Field Name:** `CAMPAIGN_IS_PERFORMANCE_PLUS`
**Type:** dimension |
### Ad Group
| | |
| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Group ID
| The unique identifier of the ad group
**Field Name:** `AD_GROUP_ID`
**Type:** dimension |
| Ad Group Name
| The name of the ad group
**Field Name:** `AD_GROUP_NAME`
**Type:** dimension |
| Ad Group Status
| The status of the ad group
**Field Name:** `AD_GROUP_STATUS`
**Type:** dimension |
| Ad Group Campaign ID
| The unique identifier of the campaign of the ad group
**Field Name:** `AD_GROUP_CAMPAIGN_ID`
**Type:** dimension |
| Ad Group Type
| The type of the ad group
**Field Name:** `AD_GROUP_TYPE`
**Type:** dimension |
| Auto Targeting Enabled
| Whether auto targeting is enabled or not
**Field Name:** `AD_GROUP_AUTO_TARGETING_ENABLED`
**Type:** dimension |
| Bid
| The bid amount of the ad group in the currency of the advertiser account
**Field Name:** `AD_GROUP_BID_VALUE`
**Type:** dimension |
| Billable Event
| The billable event of the ad group
**Field Name:** `AD_GROUP_BILLABLE_EVENT`
**Type:** dimension |
| Budget
| The budget of the ad group in the currency of the advertiser account
**Field Name:** `AD_GROUP_BUDGET_VALUE`
**Type:** dimension |
| Budget Type
| The budget type of the ad group
**Field Name:** `AD_GROUP_BUDGET_TYPE`
**Type:** dimension |
| Lifetime Frequency Cap
| Lifetime frequency cap of the ad group
**Field Name:** `AD_GROUP_LIFETIME_FREQUENCY_CAP`
**Type:** dimension |
| Optimization Goal Conversion Tag ID
| The unique identifier for the conversion tag of the ad group
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_CONVERSION_TAG_ID`
**Type:** dimension |
| Optimization Goal Conversion Event
| The conversion event of the ad group
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_CONVERSION_EVENT`
**Type:** dimension |
| Optimization Goal Engagement Window
| The engagement attribution window in days
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_ENGAGEMENT_WINDOW`
**Type:** dimension |
| Optimization Goal Click Window
| The click attribution window in days
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_CLICK_WINDOW`
**Type:** dimension |
| Optimization Goal View Window
| The view attribution window in days
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_VIEW_WINDOW`
**Type:** dimension |
| Optimization Goal Learning Mode Type
| The learning mode type of the ad group
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_LEARNING_MODE_TYPE`
**Type:** dimension |
| Optimization Goal CPA Value
| The CPA goal value of the ad group in the currency of the advertiser account
**Field Name:** `AD_GROUP_OPTIMIZATION_GOAL_CPA_VALUE`
**Type:** dimension |
| Pacing Delivery Type
| The pacing delivery type of the ad group
**Field Name:** `AD_GROUP_PACING_DELIVERY_TYPE`
**Type:** dimension |
| Pin Promotion IDs
| The unique identifiers for the pin promotions of the ad group
**Field Name:** `AD_GROUP_PIN_PROMOTION_IDS`
**Type:** dimension |
| Placement Group
| List of placements group for the ad group
**Field Name:** `AD_GROUP_PLACEMENT_GROUP`
**Type:** dimension |
| Targeting App Type
| List of app types the ad group is targeting
**Field Name:** `AD_GROUP_TARGETING_SPEC_APP_TYPE`
**Type:** dimension |
| Targeting Gender
| List of genders the ad group is targeting
**Field Name:** `AD_GROUP_TARGETING_SPEC_GENDER`
**Type:** dimension |
| Targeting Locale
| List of locales the ad group is targeting
**Field Name:** `AD_GROUP_TARGETING_SPEC_LOCALE`
**Type:** dimension |
| Targeting Location
| List of locations the ad group is targeting
**Field Name:** `AD_GROUP_TARGETING_SPEC_LOCATION`
**Type:** dimension |
| Targeting Geo
| List of geolocations the ad group is targeting
**Field Name:** `AD_GROUP_TARGETING_SPEC_GEO`
**Type:** dimension |
| Tracking URLs
| The tracking URLs of the ad group
**Field Name:** `AD_GROUP_TRACKING_URLS`
**Type:** dimension |
| Ad Group Summary Status
| The overall status of the ad group
**Field Name:** `AD_GROUP_SUMMARY_STATUS`
**Type:** dimension |
| Bid Strategy Type
| The bid strategy type for the ad group
**Field Name:** `AD_GROUP_BID_STRATEGY_TYPE`
**Type:** dimension |
| Ad Group Start Date
| The start date and start time of your ad group in UTC
**Field Name:** `AD_GROUP_START_TIME`
**Type:** dimension |
| Ad Group End Date
| The end date and end time of your ad group in UTC
**Field Name:** `AD_GROUP_END_TIME`
**Type:** dimension |
| Ad Group Created Date
| The date the ad group was created
**Field Name:** `AD_GROUP_CREATED_TIME`
**Type:** dimension |
| Ad Group Updated Date
| The date the ad group was last updated
**Field Name:** `AD_GROUP_UPDATED_TIME`
**Type:** dimension |
### Ad
| | |
| ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad ID
| The unique ID of the ad/pin promotion
**Field Name:** `AD_ID`
**Type:** dimension |
| Ad Name
| Name of promoted pin / ad
**Field Name:** `AD_NAME`
**Type:** dimension |
| Ad Status
| Status of promoted pin / ad
**Field Name:** `AD_STATUS`
**Type:** dimension |
| Pin ID
| ID of the pin used in the promoted pin / ad
**Field Name:** `PIN_ID`
**Type:** dimension |
| Creative Type
| Creative type used in the promoted pin / ad
**Field Name:** `AD_CREATIVE_TYPE`
**Type:** dimension |
| Destination URL
| Destination URL used in promoted pin / ad
**Field Name:** `DESTINATION_URL`
**Type:** dimension |
| Android Deep Link
| Deep link for Android apps used in pin
**Field Name:** `PIN_PROMOTION_ANDROID_DEEP_LINK`
**Type:** dimension |
| iOS Deep Link
| Deep link for iOS apps used in pin
**Field Name:** `PIN_PROMOTION_IOS_DEEP_LINK`
**Type:** dimension |
| Click Tracking URL
| 3rd-party click tracking URL used on promoted pin / ad
**Field Name:** `PIN_PROMOTION_CLICK_TRACKING_URL`
**Type:** dimension |
| View Tracking URL
| 3rd-party impression or view tracking URL used on promoted pin / ad
**Field Name:** `PIN_PROMOTION_VIEW_TRACKING_URL`
**Type:** dimension |
| Review Status
| Review status of promoted pin / ad
**Field Name:** `PIN_PROMOTION_REVIEW_STATUS`
**Type:** dimension |
| Is Pin Deleted
| TRUE if pin has been deleted, FALSE if pin still exists
**Field Name:** `PIN_PROMOTION_IS_PIN_DELETED`
**Type:** dimension |
| Grid Click Type
| The type of click interaction for the ad
**Field Name:** `AD_GRID_CLICK_TYPE`
**Type:** dimension |
| Ad Summary Status
| The overall status of the ad
**Field Name:** `AD_SUMMARY_STATUS`
**Type:** dimension |
| Ad Created Date
| The date the promoted pin was created
**Field Name:** `AD_CREATED_TIME`
**Type:** dimension |
| Ad Updated Date
| The date the promoted pin was last updated
**Field Name:** `AD_UPDATED_TIME`
**Type:** dimension |
### UTM Parameters
| | |
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
| UTM Source
| Value of the utm\_source parameter extracted from the ad destination URL
**Field Name:** `UTM_SOURCE`
**Type:** dimension |
| UTM Medium
| Value of the utm\_medium parameter extracted from the ad destination URL
**Field Name:** `UTM_MEDIUM`
**Type:** dimension |
| UTM Campaign
| Value of the utm\_campaign parameter extracted from the ad destination URL
**Field Name:** `UTM_CAMPAIGN`
**Type:** dimension |
| UTM Content
| Value of the utm\_content parameter extracted from the ad destination URL
**Field Name:** `UTM_CONTENT`
**Type:** dimension |
| UTM Term
| Value of the utm\_term parameter extracted from the ad destination URL
**Field Name:** `UTM_TERM`
**Type:** dimension |
### Targeting Breakdown
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Targeting Type
| The type of targeting applied (e.g., KEYWORD, GENDER, AGE\_BUCKET)
**Field Name:** `TARGETING_TYPE`
**Type:** dimension |
| Targeting Value
| The value of the targeting applied
**Field Name:** `TARGETING_VALUE`
**Type:** dimension |
| Keyword
| Keyword targeting value when targeting type is KEYWORD
**Field Name:** `TARGETING_KEYWORD`
**Type:** dimension |
| Gender
| Gender targeting value when targeting type is GENDER
**Field Name:** `TARGETING_GENDER`
**Type:** dimension |
| Age Group
| Age group targeting value when targeting type is AGE\_BUCKET
**Field Name:** `TARGETING_AGE`
**Type:** dimension |
| Country Code
| Country code targeting value when targeting type is GEO
**Field Name:** `TARGETING_COUNTRY`
**Type:** dimension |
| Region Code
| Region code targeting value when targeting type is GEO
**Field Name:** `TARGETING_REGION`
**Type:** dimension |
| Location
| Location targeting value when targeting type is LOCATION
**Field Name:** `TARGETING_LOCATION`
**Type:** dimension |
| App Type
| App type targeting value when targeting type is APPTYPE
**Field Name:** `TARGETING_APP_TYPE`
**Type:** dimension |
| Feed Type
| Feed type targeting value
**Field Name:** `TARGETING_FEED_TYPE`
**Type:** dimension |
| Placement
| Placement targeting value when targeting type is PLACEMENT
**Field Name:** `TARGETING_PLACEMENT`
**Type:** dimension |
| Targeted Interest
| Interest targeting value when targeting type is INTEREST
**Field Name:** `TARGETING_TARGETED_INTEREST`
**Type:** dimension |
| Pinner Interest
| Pinner interest value for interest-based targeting
**Field Name:** `TARGETING_PINNER_INTEREST`
**Type:** dimension |
| Audience Include
| Audience include value for audience targeting
**Field Name:** `TARGETING_AUDIENCE_INCLUDE`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Pinterest Ads campaigns.
### Core Metrics
| | |
| ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Spend
| The money you spent for promoted Pins, in the currency of the advertiser
**Field Name:** `SPEND_IN_DOLLAR`
**Type:** metric |
| Impressions
| The number of impressions from earned and paid sources
**Field Name:** `TOTAL_IMPRESSION`
**Type:** metric |
| Impressions Paid
| The number of impressions from your promoted Pins. This includes both paid impressions and over-delivered impressions
**Field Name:** `IMPRESSION_1`
**Type:** metric |
| Impressions Earned
| The number of impressions from Repins of your promoted Pins
**Field Name:** `IMPRESSION_2`
**Type:** metric |
| Frequency
| The average number of times each user saw your ad
**Field Name:** `TOTAL_IMPRESSION_FREQUENCY`
**Type:** metric |
| Reach
| Total number of unique users who saw your ads
**Field Name:** `TOTAL_IMPRESSION_USER`
**Type:** metric |
| Clicks
| The number of clicks from earned and paid sources
**Field Name:** `TOTAL_CLICKTHROUGH`
**Type:** metric |
| Clicks Paid
| The number of clicks from your promoted Pins. This includes both paid clicks and over-delivered clicks
**Field Name:** `CLICKTHROUGH_1`
**Type:** metric |
| Clicks Earned
| The number of clicks from Repins of your promoted Pins
**Field Name:** `CLICKTHROUGH_2`
**Type:** metric |
| CTR
| Click-through rate
**Field Name:** `ECTR`
**Type:** metric |
| CTR Paid
| The click-through rate of paid sources
**Field Name:** `CTR`
**Type:** metric |
| CTR Earned
| The click-through rate of earned sources
**Field Name:** `CTR_2`
**Type:** metric |
| Outbound Clicks Paid
| The number of paid outbound clicks from your promoted Pins
**Field Name:** `OUTBOUND_CLICK_1`
**Type:** metric |
| Outbound Clicks Earned
| The number of earned outbound clicks from your promoted Pins
**Field Name:** `OUTBOUND_CLICK_2`
**Type:** metric |
| Conversions
| This is the sum of all website conversions. For example, if you track sign ups and checkouts on your website, it's the sum of all sign ups and checkouts attributed from clicks, engagements and views on Pinterest
**Field Name:** `TOTAL_CONVERSIONS`
**Type:** metric |
| Conversions Quantity
| Conversions quantity
**Field Name:** `TOTAL_CONVERSIONS_QUANTITY`
**Type:** metric |
| Conversions Value
| Conversions value
**Field Name:** `TOTAL_CONVERSIONS_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Saves Paid
| The number of paid Repins of your promoted Pins
**Field Name:** `REPIN_1`
**Type:** metric |
| Saves Earned
| The number of unpaid Repins of your promoted Pins
**Field Name:** `REPIN_2`
**Type:** metric |
| Save Rate Paid
| The rate of paid Repins
**Field Name:** `REPIN_RATE`
**Type:** metric |
| Save Rate
| The rate of Repins
**Field Name:** `TOTAL_REPIN_RATE`
**Type:** metric |
| Carousel Swipes Paid
| The number of paid swipes from your promoted carousel Pins
**Field Name:** `CAROUSEL_SWIPE_1`
**Type:** metric |
| Carousel Swipes Earned
| The number of non-paid swipes from your promoted carousel Pins
**Field Name:** `CAROUSEL_SWIPE_2`
**Type:** metric |
| Engagements
| Total engagements from earned and paid sources
**Field Name:** `TOTAL_ENGAGEMENT`
**Type:** metric |
| Engagements Paid
| Total engagements from paid sources
**Field Name:** `ENGAGEMENT_1`
**Type:** metric |
| Engagements Earned
| Total engagements from earned sources
**Field Name:** `ENGAGEMENT_2`
**Type:** metric |
| CPM
| Cost per mille
**Field Name:** `CPM_IN_DOLLAR`
**Type:** metric |
| CPC
| Cost per click
**Field Name:** `ECPC_IN_DOLLAR`
**Type:** metric |
| CPE
| Cost per engagement
**Field Name:** `ECPE_IN_DOLLAR`
**Type:** metric |
| Cost Per Outbound Click
| Average cost per total outbound click (paid and earned)
**Field Name:** `COST_PER_OUTBOUND_CLICK_IN_DOLLAR`
**Type:** metric |
| Engagement Rate Paid
| Paid engagements divided by paid impressions
**Field Name:** `ENGAGEMENT_RATE`
**Type:** metric |
| Engagement Rate
| Total engagements divided by total impressions
**Field Name:** `EENGAGEMENT_RATE`
**Type:** metric |
| Page Visits
| Total number of page visit events resulting from interactions with your ad
**Field Name:** `TOTAL_PAGE_VISIT`
**Type:** metric |
| Page Visit Conversion Rate
| Total conversions divided by total clicks
**Field Name:** `TOTAL_PAGE_VISIT_CONVERSION_RATE`
**Type:** metric |
| Add to Cart Conversion Rate
| The number of conversions per the number of total ad impressions that can be tracked to a conversion during the same time period
**Field Name:** `TOTAL_ADD_TO_CART_CONVERSION_RATE`
**Type:** metric |
| Checkout Conversion Rate
| The number of conversions per the number of total ad impressions that can be tracked to a conversion during the same time period
**Field Name:** `TOTAL_CHECKOUT_CONVERSION_RATE`
**Type:** metric |
| Search Conversion Rate
| The number of conversions per the number of total ad impressions that can be tracked to a conversion during the same time period
**Field Name:** `TOTAL_SEARCH_CONVERSION_RATE`
**Type:** metric |
| Category View Conversion Rate
| The number of conversions per the number of total ad impressions that can be tracked to a conversion during the same time period
**Field Name:** `TOTAL_VIEW_CATEGORY_CONVERSION_RATE`
**Type:** metric |
| Gross Pin Clicks
| Unfiltered number of times someone clicks your ad (paid)
**Field Name:** `CLICKTHROUGH_1_GROSS`
**Type:** metric |
| Gross Impressions
| Unfiltered number of times your ad was on screen (paid)
**Field Name:** `IMPRESSION_1_GROSS`
**Type:** metric |
| Leads
| Total number of leads generated from your ads
**Field Name:** `LEADS`
**Type:** metric |
| Cost per Lead
| Average cost per lead generated from your ads
**Field Name:** `COST_PER_LEAD`
**Type:** metric |
| Paid Impressions
| Number of paid impressions from your promoted Pins
**Field Name:** `PAID_IMPRESSION`
**Type:** metric |
| Add to Wishlist
| Total number of add to wishlist events resulting from interactions with your ads
**Field Name:** `TOTAL_ADD_TO_WISHLIST`
**Type:** metric |
| Subscriptions
| Total number of subscription events resulting from interactions with your ads
**Field Name:** `TOTAL_SUBSCRIBE`
**Type:** metric |
### Video Engagements
| | |
| ------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Video Starts
| Total number of times your video ad started playing (paid and earned)
**Field Name:** `TOTAL_VIDEO_P0_COMBINED`
**Type:** metric |
| Video Starts Paid
| Number of times your video ad started playing
**Field Name:** `VIDEO_P0_COMBINED_1`
**Type:** metric |
| Video Starts Earned
| Number of times your video ad started playing after it was saved to another person's board
**Field Name:** `VIDEO_P0_COMBINED_2`
**Type:** metric |
| Video Views
| Total number of times your video ad played continuously for 2 seconds while 50% in view (paid and earned)
**Field Name:** `TOTAL_VIDEO_MRC_VIEWS`
**Type:** metric |
| Video Views Paid
| Number of times your video ad played continuously for 2 seconds while 50% in view
**Field Name:** `VIDEO_MRC_VIEWS_1`
**Type:** metric |
| Video Views Earned
| Number of times your video ad played continuously for 2 seconds while 50% in view after being saved to another person's board
**Field Name:** `VIDEO_MRC_VIEWS_2`
**Type:** metric |
| Three Second Video Views
| Total number of times your video ad played continuously for at least 3 seconds while 50% visible (includes both paid and earned)
**Field Name:** `TOTAL_VIDEO_3SEC_VIEWS`
**Type:** metric |
| Three Second Video Views Earned
| Number of times your video ad played continuously for 3 seconds while 50% in view after being saved to another person's board
**Field Name:** `VIDEO_3SEC_VIEWS_2`
**Type:** metric |
| Video Avg. Watch Time (s)
| Average watch time of all video ads, including seeks and loops
**Field Name:** `TOTAL_VIDEO_AVG_WATCHTIME_IN_SECOND`
**Type:** metric |
| Video Avg. Watch Time (s) Paid
| Average watch time of all video ads, including seeks and loops
**Field Name:** `VIDEO_AVG_WATCHTIME_IN_SECOND_1`
**Type:** metric |
| Video Avg. Watch Time (s) Earned
| Average watch time of all video ads, including seeks and loops, after being saved to another person's board
**Field Name:** `VIDEO_AVG_WATCHTIME_IN_SECOND_2`
**Type:** metric |
| Video Views at 25%
| Total number of times your video ad reached 25% of its length, including views that skipped ahead to this point (paid and earned)
**Field Name:** `TOTAL_VIDEO_P25_COMBINED`
**Type:** metric |
| Video Views at 25% Paid
| Number of times your video ad reached 25% of its length, including views that skipped ahead to this point
**Field Name:** `VIDEO_P25_COMBINED_1`
**Type:** metric |
| Video Views at 25% Earned
| Number of times your video ad reached 25% of its length after it was saved to another person's board, including views that skipped ahead to this point
**Field Name:** `VIDEO_P25_COMBINED_2`
**Type:** metric |
| Video Views at 50%
| Total number of times your video ad reached 50% of its length, including views that skipped ahead to this point (paid and earned)
**Field Name:** `TOTAL_VIDEO_P50_COMBINED`
**Type:** metric |
| Video Views at 50% Paid
| Number of times your video ad reached 50% of its length, including views that skipped ahead to this point
**Field Name:** `VIDEO_P50_COMBINED_1`
**Type:** metric |
| Video Views at 50% Earned
| Number of times your video ad reached 50% of its length after it was saved to another person's board, including views that skipped ahead to this point
**Field Name:** `VIDEO_P50_COMBINED_2`
**Type:** metric |
| Video Views at 75%
| Total number of times your video ad reached 75% of its length, including views that skipped ahead to this point (paid and earned)
**Field Name:** `TOTAL_VIDEO_P75_COMBINED`
**Type:** metric |
| Video Views at 75% Paid
| Number of times your video ad reached 75% of its length, including views that skipped ahead to this point
**Field Name:** `VIDEO_P75_COMBINED_1`
**Type:** metric |
| Video Views at 75% Earned
| Number of times your video ad reached 75% of its length after it was saved to another person's board, including views that skipped ahead to this point
**Field Name:** `VIDEO_P75_COMBINED_2`
**Type:** metric |
| Video Views at 95%
| Total number of times your video ad reached 95% of its length, including views that skipped ahead to this point (paid and earned)
**Field Name:** `TOTAL_VIDEO_P95_COMBINED`
**Type:** metric |
| Video Views at 95% Paid
| Number of times your video ad reached 95% of its length, including views that skipped ahead to this point
**Field Name:** `VIDEO_P95_COMBINED_1`
**Type:** metric |
| Video Views at 95% Earned
| Number of times your video ad reached 95% of its length after it was saved to another person's board, including views that skipped ahead to this point
**Field Name:** `VIDEO_P95_COMBINED_2`
**Type:** metric |
| Video Views at 100%
| Total number of times your video ad reached 100% of its length, including views that skipped ahead to this point (paid and earned)
**Field Name:** `TOTAL_VIDEO_P100_COMPLETE`
**Type:** metric |
| Video Views at 100% Earned
| Number of times your video ad reached 100% of its length after it was saved to another person's board, including views that skipped ahead to this point
**Field Name:** `VIDEO_P100_COMPLETE_2`
**Type:** metric |
| CPCV (100%)
| Average cost per video view that was played until completion, including views that skipped ahead to this point
**Field Name:** `ECPCV_IN_DOLLAR`
**Type:** metric |
| CPCV (95%)
| Average cost per video that was played until 95% of its length, including views that skipped ahead to this point
**Field Name:** `ECPCV_P95_IN_DOLLAR`
**Type:** metric |
| CPV
| Average cost per video view
**Field Name:** `ECPV_IN_DOLLAR`
**Type:** metric |
| Video 100% (Paid)
| Number of times your paid video ad reached 100% of its length, including views that skipped ahead to this point
**Field Name:** `VIDEO_P100_COMPLETE_1`
**Type:** metric |
| Video Spend
| Total spend on video ads
**Field Name:** `VIDEO_SPEND_IN_DOLLAR`
**Type:** metric |
| Paid Video Viewable Rate
| The percentage of paid video impressions that were viewable
**Field Name:** `PAID_VIDEO_VIEWABLE_RATE`
**Type:** metric |
### Conversions Add to Cart
| | |
| ------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions (Add to Cart)
| Total number of add to cart events resulting from interactions with your ad
**Field Name:** `TOTAL_ADD_TO_CART`
**Type:** metric |
| Conversions Value (Add to Cart)
| Total value of add to cart events resulting from interactions with your ad
**Field Name:** `TOTAL_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Click-through Conversions (Add to Cart)
| Total number of add to cart events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_ADD_TO_CART`
**Type:** metric |
| Conversion Quantity from Add to Cart - Clicks
| Total quantity of add to cart events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_ADD_TO_CART_QUANTITY`
**Type:** metric |
| Click-through Value (Add to Cart)
| Total value of add to cart events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Add to Cart)
| Total number of add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_ADD_TO_CART`
**Type:** metric |
| Conversion Quantity from Add to Cart - Engagements
| Total quantity of add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_ADD_TO_CART_QUANTITY`
**Type:** metric |
| Engagement Value (Add to Cart)
| Total value of add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Add to Cart)
| Total number of add to cart events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_ADD_TO_CART`
**Type:** metric |
| Conversion Quantity from Add to Cart - Views
| Total quantity of add to cart events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_ADD_TO_CART_QUANTITY`
**Type:** metric |
| View-through Value (Add to Cart)
| Total value of add to cart events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Add to Cart)
| Total number of web add to cart events resulting from interactions with your ads
**Field Name:** `TOTAL_WEB_ADD_TO_CART`
**Type:** metric |
| Web Order Value (Add to Cart)
| Total value of web add to cart events resulting from interactions with your ads
**Field Name:** `TOTAL_WEB_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Click-through Conversions (Add to Cart)
| Total number of web add to cart events resulting from clicks on your ads
**Field Name:** `TOTAL_WEB_CLICK_ADD_TO_CART`
**Type:** metric |
| Web Click-through Order Value (Add to Cart)
| Total value of web add to cart events resulting from interactions with your ads
**Field Name:** `TOTAL_WEB_CLICK_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Engagement Conversions (Add to Cart)
| Total number of web add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_WEB_ENGAGEMENT_ADD_TO_CART`
**Type:** metric |
| Web Engagement Order Value (Add to Cart)
| Total value of web add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_WEB_ENGAGEMENT_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web View-through Conversions (Add to Cart)
| Total number of web add to cart events resulting from views of your ads
**Field Name:** `TOTAL_WEB_VIEW_ADD_TO_CART`
**Type:** metric |
| Web View-through Order Value (Add to Cart)
| Total value of web add to cart events resulting from views of your ads
**Field Name:** `TOTAL_WEB_VIEW_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Conversions (Add to Cart)
| Total number of in-app add to cart events resulting from interactions with your ads
**Field Name:** `TOTAL_INAPP_ADD_TO_CART`
**Type:** metric |
| In-app Order Value (Add to Cart)
| Total value of in-app add to cart events resulting from interactions with your ads
**Field Name:** `TOTAL_INAPP_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Click-through Conversions (Add to Cart)
| Total number of in-app add to cart events resulting from clicks on your ads
**Field Name:** `TOTAL_INAPP_CLICK_ADD_TO_CART`
**Type:** metric |
| In-app Click-through Order Value (Add to Cart)
| Total value of in-app add to cart events resulting from clicks on your ads
**Field Name:** `TOTAL_INAPP_CLICK_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Engagement Conversions (Add to Cart)
| Total number of in-app add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_INAPP_ENGAGEMENT_ADD_TO_CART`
**Type:** metric |
| In-app Engagement Order Value (Add to Cart)
| Total value of in-app add to cart events resulting from engagement with your ads
**Field Name:** `TOTAL_INAPP_ENGAGEMENT_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app View-through Conversions (Add to Cart)
| Total number of in-app add to cart events resulting from views of your ads
**Field Name:** `TOTAL_INAPP_VIEW_ADD_TO_CART`
**Type:** metric |
| In-app View-through Order Value (Add to Cart)
| Total value of in-app add to cart events resulting from views of your ads
**Field Name:** `TOTAL_INAPP_VIEW_ADD_TO_CART_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| CPA (Add to Cart)
| Average cost per add to cart event
**Field Name:** `ADD_TO_CART_COST_PER_ACTION`
**Type:** metric |
| ROAS (Add to Cart)
| Average return on ad spend for add to cart events
**Field Name:** `ADD_TO_CART_ROAS`
**Type:** metric |
| In-app CPA (Add to Cart)
| Average cost per in-app add to cart events
**Field Name:** `INAPP_ADD_TO_CART_COST_PER_ACTION`
**Type:** metric |
| In-app ROAS (Add to Cart)
| Average return on spend for in-app add to cart events
**Field Name:** `INAPP_ADD_TO_CART_ROAS`
**Type:** metric |
| Add to Cart Desktop to Desktop
| Total number of desktop add to cart actions leading to a desktop add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Add to Cart Desktop to Mobile
| Total number of desktop add to cart actions leading to a mobile add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Add to Cart Desktop to Tablet
| Total number of desktop add to cart actions leading to a tablet add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Add to Cart Mobile to Desktop
| Total number of mobile add to cart actions leading to a desktop add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Add to Cart Mobile to Mobile
| Total number of mobile add to cart actions leading to a mobile add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Add to Cart Mobile to Tablet
| Total number of desktop add to cart actions leading to a mobile add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Add to Cart Tablet to Desktop
| Total number of tablet add to cart actions leading to a desktop add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Add to Cart Tablet to Mobile
| Total number of tablet add to cart actions leading to a mobile add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Add to Cart Tablet to Tablet
| Total number of tablet add to cart actions leading to a tablet add to cart conversion
**Field Name:** `TOTAL_ADD_TO_CART_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions App Install
| | |
| --------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions (App Install)
| Total number of app install events resulting from interactions with your ads
**Field Name:** `TOTAL_APP_INSTALL`
**Type:** metric |
| Order Value (App Install)
| Total value of app install events resulting from interactions with your ad
**Field Name:** `TOTAL_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Click-through Conversions (App Install)
| Total number of app install events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_APP_INSTALL`
**Type:** metric |
| Click-through Value (App Install)
| Total value of app install events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (App Install)
| Total number of app install events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_APP_INSTALL`
**Type:** metric |
| Engagement Value (App Install)
| Total value of app install events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (App Install)
| Total number of app install events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_APP_INSTALL`
**Type:** metric |
| View-through Value (App Install)
| Total value of app install events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Conversions (App Install)
| Total number of in-app app install events resulting from interactions with your ads
**Field Name:** `TOTAL_INAPP_APP_INSTALL`
**Type:** metric |
| In-app Order Value (App Install)
| Total value of in-app app install events resulting from interactions with your ad
**Field Name:** `TOTAL_INAPP_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Click-through Conversions (App Install)
| Total number of in-app app install events resulting from clicks on your ads
**Field Name:** `TOTAL_INAPP_CLICK_APP_INSTALL`
**Type:** metric |
| In-app Click-through Order Value (App Install)
| Total value of in-app app install events resulting from clicks on your ads
**Field Name:** `TOTAL_INAPP_CLICK_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Engagement Conversions (App Install)
| Total number of in-app app install events resulting from engagement with your ads
**Field Name:** `TOTAL_INAPP_ENGAGEMENT_APP_INSTALL`
**Type:** metric |
| In-app Engagement Order Value (App Install)
| Total value of in-app app install events resulting from engagement with your ads
**Field Name:** `TOTAL_INAPP_ENGAGEMENT_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app View-through Conversions (App Install)
| Total number of in-app app install events resulting from views of your ads
**Field Name:** `TOTAL_INAPP_VIEW_APP_INSTALL`
**Type:** metric |
| In-app View-through Order Value (App Install)
| Total value of in-app app install events resulting from views of your ads
**Field Name:** `TOTAL_INAPP_VIEW_APP_INSTALL_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| CPA (App Install)
| Average cost per app install events
**Field Name:** `APP_INSTALL_COST_PER_ACTION`
**Type:** metric |
| In-app CPA (App Install)
| Average cost per in-app app install events
**Field Name:** `INAPP_APP_INSTALL_COST_PER_ACTION`
**Type:** metric |
| In-app ROAS (App Install)
| Average return on ad spend for in-app app install events
**Field Name:** `INAPP_APP_INSTALL_ROAS`
**Type:** metric |
| App Install Desktop to Desktop
| Total number of desktop app install actions leading to a desktop app install conversion
**Field Name:** `TOTAL_APP_INSTALL_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| App Install Desktop to Mobile
| Total number of desktop app install actions leading to a mobile app install conversion
**Field Name:** `TOTAL_APP_INSTALL_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| App Install Desktop to Tablet
| Total number of desktop app install actions leading to a tablet app install conversion
**Field Name:** `TOTAL_APP_INSTALL_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| App Install Mobile to Desktop
| Total number of mobile app install actions leading to a desktop app install conversion
**Field Name:** `TOTAL_APP_INSTALL_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| App Install Mobile to Mobile
| Total number of mobile app install actions leading to a mobile app install conversion
**Field Name:** `TOTAL_APP_INSTALL_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| App Install Mobile to Tablet
| Total number of mobile app install actions leading to a tablet app install conversion
**Field Name:** `TOTAL_APP_INSTALL_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| App Install Tablet to Desktop
| Total number of tablet app install actions leading to a desktop app install conversion
**Field Name:** `TOTAL_APP_INSTALL_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| App Install Tablet to Mobile
| Total number of tablet app install actions leading to a mobile app install conversion
**Field Name:** `TOTAL_APP_INSTALL_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| App Install Tablet to Tablet
| Total number of tablet app install actions leading to a tablet app install conversion
**Field Name:** `TOTAL_APP_INSTALL_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions Checkout
| | |
| ------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions (Checkout)
| Total number of checkout events that resulted from interactions with your ad
**Field Name:** `TOTAL_CHECKOUT`
**Type:** metric |
| Conversions Value (Checkout)
| Total value of checkout events resulting from interactions with your ad
**Field Name:** `TOTAL_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Click-through Conversions (Checkout)
| Checkouts that can be traced back to when somebody clicked a promoted Pin and continued to your site, leaving Pinterest
**Field Name:** `TOTAL_CLICK_CHECKOUT`
**Type:** metric |
| Click-through Order Quantity (Checkout)
| Clicks checkout quantity
**Field Name:** `TOTAL_CLICK_CHECKOUT_QUANTITY`
**Type:** metric |
| Click-through Order Value (Checkout)
| Clicks checkout value
**Field Name:** `TOTAL_CLICK_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Checkout)
| Engagements checkout
**Field Name:** `TOTAL_ENGAGEMENT_CHECKOUT`
**Type:** metric |
| Engagement Order Quantity (Checkout)
| Engagements checkout quantity
**Field Name:** `TOTAL_ENGAGEMENT_CHECKOUT_QUANTITY`
**Type:** metric |
| Engagement Order Value (Checkout)
| Engagements checkout value
**Field Name:** `TOTAL_ENGAGEMENT_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Checkout)
| Checkouts that can be traced back to times when people repinned or clicked your promoted Pin to see it close-up, staying on Pinterest
**Field Name:** `TOTAL_VIEW_CHECKOUT`
**Type:** metric |
| View-through Order Quantity (Checkout)
| Views checkout quantity
**Field Name:** `TOTAL_VIEW_CHECKOUT_QUANTITY`
**Type:** metric |
| View-through Order Value (Checkout)
| Views checkout value
**Field Name:** `TOTAL_VIEW_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Checkout)
| Total number of web checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_CHECKOUT`
**Type:** metric |
| Web Order Value (Checkout)
| Total value of web checkout events resulting from interactions with your ad
**Field Name:** `TOTAL_WEB_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Click-through Conversions (Checkout)
| Total number of web checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_CLICK_CHECKOUT`
**Type:** metric |
| Web Click-through Order Value (Checkout)
| Total value of web checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_CLICK_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Engagement Conversions (Checkout)
| Total number of web checkout events resulting from engagements with your ad (save, closeup or carousel swipe)
**Field Name:** `TOTAL_WEB_ENGAGEMENT_CHECKOUT`
**Type:** metric |
| Web Engagement Order Value (Checkout)
| Total value of web checkout events resulting from engagements with your ad (save, closeup or carousel swipe)
**Field Name:** `TOTAL_WEB_ENGAGEMENT_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web View-through Conversions (Checkout)
| Total number of web checkout events resulting from views of your ad
**Field Name:** `TOTAL_WEB_VIEW_CHECKOUT`
**Type:** metric |
| Web View-through Order Value (Checkout)
| Total value of web checkout events resulting from views of your ad
**Field Name:** `TOTAL_WEB_VIEW_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Conversions (Checkout)
| Total number of in-app checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_INAPP_CHECKOUT`
**Type:** metric |
| In-app Order Value (Checkout)
| Total value of in-app checkout events resulting from interactions with your ad
**Field Name:** `TOTAL_INAPP_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Click-through Conversions (Checkout)
| Total number of in-app checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_INAPP_CLICK_CHECKOUT`
**Type:** metric |
| In-app Click-through Order Value (Checkout)
| Total value of in-app checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_INAPP_CLICK_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Engagement Conversions (Checkout)
| Total number of in-app checkout events resulting from engagements with your ad (save, closeup or carousel swipe)
**Field Name:** `TOTAL_INAPP_ENGAGEMENT_CHECKOUT`
**Type:** metric |
| In-app Engagement Order Value (Checkout)
| Total value of in-app checkout events resulting from engagements with your ad (save, closeup or carousel swipe)
**Field Name:** `TOTAL_INAPP_ENGAGEMENT_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app View-through Conversions (Checkout)
| Total number of in-app checkout events resulting from views of your ad
**Field Name:** `TOTAL_INAPP_VIEW_CHECKOUT`
**Type:** metric |
| In-app View-through Order Value (Checkout)
| Total value of in-app checkout events resulting from views of your ad
**Field Name:** `TOTAL_INAPP_VIEW_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline Conversions (Checkout)
| Total number of offline checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_OFFLINE_CHECKOUT`
**Type:** metric |
| Offline Order Value (Checkout)
| Total value of offline checkout events resulting from interactions with your ad
**Field Name:** `TOTAL_OFFLINE_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline Click-through Conversions (Checkout)
| Total number of offline checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_OFFLINE_CLICK_CHECKOUT`
**Type:** metric |
| Offline Click-through Order Value (Checkout)
| Total value of offline checkout events resulting from clicks on your ad
**Field Name:** `TOTAL_OFFLINE_CLICK_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline Engagement Conversions (Checkout)
| Total number of offline checkout events resulting from engagements with your ad (save, closeup or carousel swipe)
**Field Name:** `TOTAL_OFFLINE_ENGAGEMENT_CHECKOUT`
**Type:** metric |
| Offline Engagement Order Value (Checkout)
| Total value of offline checkout events resulting from engagements with your ad (save, closeup or carousel swipe)
**Field Name:** `TOTAL_OFFLINE_ENGAGEMENT_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline View-through Conversions (Checkout)
| Total number of offline checkout events resulting from views of your ad
**Field Name:** `TOTAL_OFFLINE_VIEW_CHECKOUT`
**Type:** metric |
| Offline View-through Order Value (Checkout)
| Total value of offline checkout events resulting from views of your ad
**Field Name:** `TOTAL_OFFLINE_VIEW_CHECKOUT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| ROAS (Checkout)
| Average return on ad spend for checkout events
**Field Name:** `CHECKOUT_ROAS`
**Type:** metric |
| CPA (Checkout)
| Average cost per checkout event
**Field Name:** `CHECKOUT_COST_PER_ACTION`
**Type:** metric |
| Web CPA (Checkout)
| Average cost per web checkout event
**Field Name:** `WEB_CHECKOUT_COST_PER_ACTION`
**Type:** metric |
| Web ROAS (Checkout)
| Average return on ad spend for web checkout events
**Field Name:** `WEB_CHECKOUT_ROAS`
**Type:** metric |
| In-app CPA (Checkout)
| Average cost per in-app checkout event
**Field Name:** `INAPP_CHECKOUT_COST_PER_ACTION`
**Type:** metric |
| In-app ROAS (Checkout)
| Average return on ad spend for in-app checkout events
**Field Name:** `INAPP_CHECKOUT_ROAS`
**Type:** metric |
| Offline CPA (Checkout)
| Average cost per offline checkout event
**Field Name:** `OFFLINE_CHECKOUT_COST_PER_ACTION`
**Type:** metric |
| Offline ROAS (Checkout)
| Average return on ad spend for offline checkout events
**Field Name:** `OFFLINE_CHECKOUT_ROAS`
**Type:** metric |
| Checkouts Desktop to Desktop
| Checkouts desktop action to desktop conversion
**Field Name:** `TOTAL_CHECKOUT_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Checkouts Desktop to Mobile
| Checkouts desktop action to mobile conversion
**Field Name:** `TOTAL_CHECKOUT_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Checkouts Desktop to Tablet
| Checkouts desktop action to tablet conversion
**Field Name:** `TOTAL_CHECKOUT_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Checkouts Mobile to Desktop
| Checkouts mobile action to desktop conversion
**Field Name:** `TOTAL_CHECKOUT_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Checkouts Mobile to Mobile
| Checkouts mobile action to mobile conversion
**Field Name:** `TOTAL_CHECKOUT_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Checkouts Mobile to Tablet
| Checkouts mobile action to tablet conversion
**Field Name:** `TOTAL_CHECKOUT_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Checkouts Tablet to Desktop
| Checkouts tablet action to desktop conversion
**Field Name:** `TOTAL_CHECKOUT_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Checkouts Tablet to Mobile
| Checkouts tablet action to mobile conversion
**Field Name:** `TOTAL_CHECKOUT_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Checkouts Tablet to Tablet
| Checkouts tablet action to tablet conversion
**Field Name:** `TOTAL_CHECKOUT_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions Custom
| | |
| -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions (Custom)
| Total number of custom events resulting from interactions with your ad
**Field Name:** `TOTAL_CUSTOM`
**Type:** metric |
| Conversion Value (Custom)
| Total value of custom events resulting from interactions with your ad
**Field Name:** `TOTAL_CUSTOM_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Click-through Conversions (Custom)
| Custom conversions that can be traced back to when somebody clicked a promoted Pin and continued to your site, leaving Pinterest
**Field Name:** `TOTAL_CLICK_CUSTOM`
**Type:** metric |
| Conversion Quantity from Custom - Clicks
| Clicks custom quantity
**Field Name:** `TOTAL_CLICK_CUSTOM_QUANTITY`
**Type:** metric |
| Click-through Value (Custom)
| Clicks custom value
**Field Name:** `TOTAL_CLICK_CUSTOM_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Custom)
| Custom conversions that can be traced back to times when people repinned or clicked your promoted Pin to see it close-up, staying on Pinterest
**Field Name:** `TOTAL_ENGAGEMENT_CUSTOM`
**Type:** metric |
| Conversion Quantity from Custom - Engagements
| Engagements custom quantity
**Field Name:** `TOTAL_ENGAGEMENT_CUSTOM_QUANTITY`
**Type:** metric |
| Engagement Value (Custom)
| Engagements custom value
**Field Name:** `TOTAL_ENGAGEMENT_CUSTOM_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Custom)
| Custom conversions that can be traced back to when somebody saw your promoted Pin
**Field Name:** `TOTAL_VIEW_CUSTOM`
**Type:** metric |
| Conversion Quantity from Custom - Views
| Views custom quantity
**Field Name:** `TOTAL_VIEW_CUSTOM_QUANTITY`
**Type:** metric |
| View-through Value (Custom)
| Views custom value
**Field Name:** `TOTAL_VIEW_CUSTOM_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Custom)
| Total number of web custom events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_CUSTOM`
**Type:** metric |
| Web Order Value (Custom)
| Total value of web custom events resulting from interactions with your ad
**Field Name:** `TOTAL_WEB_CUSTOM_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline Conversions (Custom)
| Total number of offline custom events resulting from clicks on your ad
**Field Name:** `TOTAL_OFFLINE_CUSTOM`
**Type:** metric |
| Offline Order Value (Custom)
| Total value of offline custom events resulting from interactions with your ad
**Field Name:** `TOTAL_OFFLINE_CUSTOM_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| CPA (Custom)
| Average cost per custom event
**Field Name:** `CUSTOM_COST_PER_ACTION`
**Type:** metric |
| ROAS (Custom)
| Average return on spend for custom events
**Field Name:** `CUSTOM_ROAS`
**Type:** metric |
| Custom Desktop to Desktop
| Custom desktop actions to desktop conversion
**Field Name:** `TOTAL_CUSTOM_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Custom Desktop to Mobile
| Custom desktop actions to mobile conversion
**Field Name:** `TOTAL_CUSTOM_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Custom Desktop to Tablet
| Custom desktop actions to tablet conversion
**Field Name:** `TOTAL_CUSTOM_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Custom Mobile to Desktop
| Custom mobile actions to desktop conversion
**Field Name:** `TOTAL_CUSTOM_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Custom Mobile to Mobile
| Custom mobile actions to mobile conversion
**Field Name:** `TOTAL_CUSTOM_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Custom Mobile to Tablet
| Custom mobile actions to tablet conversion
**Field Name:** `TOTAL_CUSTOM_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Custom Tablet to Desktop
| Custom tablet actions to desktop conversion
**Field Name:** `TOTAL_CUSTOM_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Custom Tablet to Mobile
| Custom tablet actions to mobile conversion
**Field Name:** `TOTAL_CUSTOM_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Custom Tablet to Tablet
| Custom tablet actions to tablet conversion
**Field Name:** `TOTAL_CUSTOM_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions Lead
| | |
| ------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions (Lead)
| Total leads from clicks, engagements and views
**Field Name:** `TOTAL_LEAD`
**Type:** metric |
| Conversion Value (Lead)
| Total value of lead events resulting from interactions with your ad
**Field Name:** `TOTAL_LEAD_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Click-through Conversions (Lead)
| Total number of lead events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_LEAD`
**Type:** metric |
| Conversion Quantity from Lead - Clicks
| Total quantity of lead events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_LEAD_QUANTITY`
**Type:** metric |
| Click-through Value (Lead)
| Total value of lead events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_LEAD_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Lead)
| Total number of lead events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_LEAD`
**Type:** metric |
| Conversion Quantity from Lead - Engagements
| Total quantity of lead events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_LEAD_QUANTITY`
**Type:** metric |
| Engagement Value (Lead)
| Total value of lead events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_LEAD_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Lead)
| Total number of lead events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_LEAD`
**Type:** metric |
| Conversion Quantity from Lead - Views
| Total quantity of lead events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_LEAD_QUANTITY`
**Type:** metric |
| View-through Value (Lead)
| Total value of lead events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_LEAD_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Lead)
| Total number of web lead events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_LEAD`
**Type:** metric |
| Web Order Value (Lead)
| Total value of web lead events resulting from interactions with your ad
**Field Name:** `TOTAL_WEB_LEAD_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline Conversions (Lead)
| Total number of offline lead events resulting from clicks on your ad
**Field Name:** `TOTAL_OFFLINE_LEAD`
**Type:** metric |
| Offline Order Value (Lead)
| Total value of offline lead events resulting from interactions with your ad
**Field Name:** `TOTAL_OFFLINE_LEAD_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| CPA (Lead)
| Average cost per lead event
**Field Name:** `LEAD_COST_PER_ACTION`
**Type:** metric |
| ROAS (Lead)
| Average return on ad spend for lead events
**Field Name:** `LEAD_ROAS`
**Type:** metric |
| Leads Desktop to Desktop
| Total number of desktop lead actions leading to a desktop lead conversion
**Field Name:** `TOTAL_LEAD_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Leads Desktop to Mobile
| Total number of desktop lead actions leading to a mobile lead conversion
**Field Name:** `TOTAL_LEAD_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Leads Desktop to Tablet
| Total number of desktop lead actions leading to a tablet lead conversion
**Field Name:** `TOTAL_LEAD_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Leads Mobile to Desktop
| Total number of mobile lead actions leading to a desktop lead conversion
**Field Name:** `TOTAL_LEAD_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Leads Mobile to Mobile
| Total number of mobile lead actions leading to a mobile lead conversion
**Field Name:** `TOTAL_LEAD_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Leads Mobile to Tablet
| Total number of mobile lead actions leading to a tablet lead conversion
**Field Name:** `TOTAL_LEAD_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Leads Tablet to Desktop
| Total number of tablet lead actions leading to a desktop lead conversion
**Field Name:** `TOTAL_LEAD_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Leads Tablet to Mobile
| Total number of tablet lead actions leading to a mobile lead conversion
**Field Name:** `TOTAL_LEAD_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Leads Tablet to Tablet
| Total number of tablet lead actions leading to a tablet lead conversion
**Field Name:** `TOTAL_LEAD_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions Page Visit
| | |
| ------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Click-through Conversions (Page Visit)
| Page visits that can be traced back to when somebody clicked a promoted Pin and continued to your site, leaving Pinterest
**Field Name:** `TOTAL_CLICK_PAGE_VISIT`
**Type:** metric |
| Conversion Quantity from Page Visit - Clicks
| Clicks page visit quantity
**Field Name:** `TOTAL_CLICK_PAGE_VISIT_QUANTITY`
**Type:** metric |
| Click-through Value (Page Visit)
| Clicks page visit value
**Field Name:** `TOTAL_CLICK_PAGE_VISIT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Page Visit)
| Page visits that can be traced back to times when people repinned or clicked your promoted Pin to see it close-up, staying on Pinterest
**Field Name:** `TOTAL_ENGAGEMENT_PAGE_VISIT`
**Type:** metric |
| Conversion Quantity from Page Visits
| Engagements page visit quantity
**Field Name:** `TOTAL_ENGAGEMENT_PAGE_VISIT_QUANTITY`
**Type:** metric |
| Engagement Value (Page Visit)
| Engagements page visit value
**Field Name:** `TOTAL_ENGAGEMENT_PAGE_VISIT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Page Visit)
| Page visits that can be traced back to when somebody saw your promoted Pin
**Field Name:** `TOTAL_VIEW_PAGE_VISIT`
**Type:** metric |
| Conversion Quantity from Page Visit - Views
| Views page visit quantity
**Field Name:** `TOTAL_VIEW_PAGE_VISIT_QUANTITY`
**Type:** metric |
| View-through Value (Page Visit)
| Views page visit value
**Field Name:** `TOTAL_VIEW_PAGE_VISIT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Page Visit)
| Total number of web page visit events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_PAGE_VISIT`
**Type:** metric |
| Web Order Value (Page Visit)
| Total value of web page visit events resulting from interactions with your ad
**Field Name:** `TOTAL_WEB_PAGE_VISIT_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| CPA (Page Visit)
| Average cost per page visit event
**Field Name:** `PAGE_VISIT_COST_PER_ACTION`
**Type:** metric |
| ROAS (Page Visit)
| Average return on ad spend for page visit events
**Field Name:** `PAGE_VISIT_ROAS`
**Type:** metric |
| Web CPA (Page Visit)
| Average cost per web page visit event
**Field Name:** `WEB_PAGE_VISIT_COST_PER_ACTION`
**Type:** metric |
| Web ROAS (Page Visit)
| Average return on ad spend for web page visit events
**Field Name:** `WEB_PAGE_VISIT_ROAS`
**Type:** metric |
| Page Visits Desktop to Desktop
| Page visits desktop action to desktop conversion
**Field Name:** `TOTAL_PAGE_VISIT_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Page Visits Desktop to Mobile
| Page visits desktop action to mobile conversion
**Field Name:** `TOTAL_PAGE_VISIT_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Page Visits Desktop to Tablet
| Page visits desktop action to tablet conversion
**Field Name:** `TOTAL_PAGE_VISIT_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Page Visits Mobile to Desktop
| Page visits mobile action to desktop conversion
**Field Name:** `TOTAL_PAGE_VISIT_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Page Visits Mobile to Mobile
| Page visits mobile action to mobile conversion
**Field Name:** `TOTAL_PAGE_VISIT_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Page Visits Mobile to Tablet
| Page visits mobile action to tablet conversion
**Field Name:** `TOTAL_PAGE_VISIT_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Page Visits Tablet to Desktop
| Page visits tablet action to desktop conversion
**Field Name:** `TOTAL_PAGE_VISIT_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Page Visits Tablet to Mobile
| Page visits tablet action to mobile conversion
**Field Name:** `TOTAL_PAGE_VISIT_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Page Visits Tablet to Tablet
| Page visits tablet action to tablet conversion
**Field Name:** `TOTAL_PAGE_VISIT_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions Signup
| | |
| -------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Conversions (Signup)
| Total sign-ups from clicks, engagements and views
**Field Name:** `TOTAL_SIGNUP`
**Type:** metric |
| Conversion Value (Signup)
| Total value of signup events resulting from interactions with your ad
**Field Name:** `TOTAL_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Click-through Conversions (Signup)
| Sign ups that can be traced back to when somebody clicked a promoted Pin and continued to your site, leaving Pinterest
**Field Name:** `TOTAL_CLICK_SIGNUP`
**Type:** metric |
| Conversion Quantity from Signup - Clicks
| Clicks sign-up quantity
**Field Name:** `TOTAL_CLICK_SIGNUP_QUANTITY`
**Type:** metric |
| Click-through Value (Signup)
| Clicks sign-up value
**Field Name:** `TOTAL_CLICK_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Signup)
| Sign ups that can be traced back to times when people repinned or clicked your promoted Pin to see it close-up, staying on Pinterest
**Field Name:** `TOTAL_ENGAGEMENT_SIGNUP`
**Type:** metric |
| Conversion Quantity from Signup - Engagements
| Engagements sign-up quantity
**Field Name:** `TOTAL_ENGAGEMENT_SIGNUP_QUANTITY`
**Type:** metric |
| Engagement Value (Signup)
| Engagements sign-up value
**Field Name:** `TOTAL_ENGAGEMENT_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Signup)
| Sign ups that can be traced back to when somebody saw your promoted Pin
**Field Name:** `TOTAL_VIEW_SIGNUP`
**Type:** metric |
| Conversion Quantity from Signup - Views
| Views sign-up quantity
**Field Name:** `TOTAL_VIEW_SIGNUP_QUANTITY`
**Type:** metric |
| View-through Value (Signup)
| Views sign-up value
**Field Name:** `TOTAL_VIEW_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Signup)
| Total number of web signup events resulting from clicks on your ad
**Field Name:** `TOTAL_WEB_SIGNUP`
**Type:** metric |
| Web Order Value (Signup)
| Total value of web signup events resulting from interactions with your ad
**Field Name:** `TOTAL_WEB_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| In-app Conversions (Signup)
| Total number of in-app signup events resulting from clicks on your ad
**Field Name:** `TOTAL_INAPP_SIGNUP`
**Type:** metric |
| In-app Order Value (Signup)
| Total value of in-app signup events resulting from interactions with your ad
**Field Name:** `TOTAL_INAPP_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Offline Conversions (Signup)
| Total number of offline signup events resulting from clicks on your ad
**Field Name:** `TOTAL_OFFLINE_SIGNUP`
**Type:** metric |
| Offline Order Value (Signup)
| Total value of offline signup events resulting from interactions with your ad
**Field Name:** `TOTAL_OFFLINE_SIGNUP_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| CPA (Signup)
| Average cost per signup event
**Field Name:** `SIGNUP_COST_PER_ACTION`
**Type:** metric |
| ROAS (Signup)
| Average return on ad spend for signup events
**Field Name:** `SIGNUP_ROAS`
**Type:** metric |
| Sign-ups Desktop to Desktop
| Sign-ups desktop action to desktop conversion
**Field Name:** `TOTAL_SIGNUP_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Sign-ups Desktop to Mobile
| Sign-ups desktop action to mobile conversion
**Field Name:** `TOTAL_SIGNUP_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Sign-ups Desktop to Tablet
| Sign-ups desktop action to tablet conversion
**Field Name:** `TOTAL_SIGNUP_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Sign-ups Mobile to Desktop
| Sign-ups mobile action to desktop conversion
**Field Name:** `TOTAL_SIGNUP_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Sign-ups Mobile to Mobile
| Sign-ups mobile action to mobile conversion
**Field Name:** `TOTAL_SIGNUP_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Sign-ups Mobile to Tablet
| Sign-ups mobile action to tablet conversion
**Field Name:** `TOTAL_SIGNUP_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Sign-ups Tablet to Desktop
| Sign-ups tablet action to desktop conversion
**Field Name:** `TOTAL_SIGNUP_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Sign-ups Tablet to Mobile
| Sign-ups tablet action to mobile conversion
**Field Name:** `TOTAL_SIGNUP_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Sign-ups Tablet to Tablet
| Sign-ups tablet action to tablet conversion
**Field Name:** `TOTAL_SIGNUP_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Conversions Watch Video
| | |
| ------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Click-through Conversions (Watch Video)
| Total number of watch video events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_WATCH_VIDEO`
**Type:** metric |
| Conversion Quantity from Watch Video - Clicks
| Total quantity of watch video events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_WATCH_VIDEO_QUANTITY`
**Type:** metric |
| Click-through Value (Watch Video)
| Total value of watch video events resulting from clicks on your ads
**Field Name:** `TOTAL_CLICK_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Engagement Conversions (Watch Video)
| Total number of watch video events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_WATCH_VIDEO`
**Type:** metric |
| Conversion Quantity from Watch Video - Engagements
| Total quantity of watch video events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_WATCH_VIDEO_QUANTITY`
**Type:** metric |
| Engagement Value (Watch Video)
| Total value of watch video events resulting from engagement with your ads
**Field Name:** `TOTAL_ENGAGEMENT_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| View-through Conversions (Watch Video)
| Total number of watch video events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_WATCH_VIDEO`
**Type:** metric |
| Conversion Quantity from Watch Video - Views
| Total quantity of watch video events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_WATCH_VIDEO_QUANTITY`
**Type:** metric |
| View-through Value (Watch Video)
| Total value of watch video events resulting from views of your ads
**Field Name:** `TOTAL_VIEW_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Conversions (Watch Video)
| Total number of web watch video events resulting from interactions with your ads
**Field Name:** `TOTAL_WEB_WATCH_VIDEO`
**Type:** metric |
| Web Order Value (Watch Video)
| Total value of web watch video events resulting from interactions with your ads
**Field Name:** `TOTAL_WEB_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Click-through Conversions (Watch Video)
| Total number of web watch video events resulting from clicks on your ads
**Field Name:** `TOTAL_WEB_CLICK_WATCH_VIDEO`
**Type:** metric |
| Web Click-through Order Value (Watch Video)
| Total value of web watch video events resulting from clicks on your ads
**Field Name:** `TOTAL_WEB_CLICK_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web Engagement Conversions (Watch Video)
| Total number of web watch video events resulting from engagement with your ads
**Field Name:** `TOTAL_WEB_ENGAGEMENT_WATCH_VIDEO`
**Type:** metric |
| Web Engagement Order Value (Watch Video)
| Total value of web watch video events resulting from engagement with your ads
**Field Name:** `TOTAL_WEB_ENGAGEMENT_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web View-through Conversions (Watch Video)
| Total number of web watch video events resulting from views of your ads
**Field Name:** `TOTAL_WEB_VIEW_WATCH_VIDEO`
**Type:** metric |
| Web View-through Order Value (Watch Video)
| Total value of web watch video events resulting from views of your ads
**Field Name:** `TOTAL_WEB_VIEW_WATCH_VIDEO_VALUE_IN_MICRO_DOLLAR`
**Type:** metric |
| Web CPA (Watch Video)
| Average cost per web watch video events
**Field Name:** `WEB_WATCH_VIDEO_COST_PER_ACTION`
**Type:** metric |
| Web ROAS (Watch Video)
| Average return on spend for web watch video events
**Field Name:** `WEB_WATCH_VIDEO_ROAS`
**Type:** metric |
| Watch Video Desktop to Desktop
| Total number of desktop watch video actions leading to a desktop watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_DESKTOP_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Watch Video Desktop to Mobile
| Total number of desktop watch video actions leading to a MOBILE watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_DESKTOP_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Watch Video Desktop to Tablet
| Total number of desktop watch video actions leading to a tablet watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_DESKTOP_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Watch Video Mobile to Desktop
| Total number of mobile watch video actions leading to a desktop watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_MOBILE_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Watch Video Mobile to Mobile
| Total number of mobile watch video actions leading to a mobile watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_MOBILE_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Watch Video Mobile to Tablet
| Total number of mobile watch video actions leading to a tablet watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_MOBILE_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
| Watch Video Tablet to Desktop
| Total number of tablet watch video actions leading to a desktop watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_TABLET_ACTION_TO_DESKTOP_CONVERSION`
**Type:** metric |
| Watch Video Tablet to Mobile
| Total number of tablet watch video actions leading to a mobile watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_TABLET_ACTION_TO_MOBILE_CONVERSION`
**Type:** metric |
| Watch Video Tablet to Tablet
| Total number of tablet watch video actions leading to a tablet watch video conversion
**Field Name:** `TOTAL_WATCH_VIDEO_TABLET_ACTION_TO_TABLET_CONVERSION`
**Type:** metric |
### Quiz Engagements
| | |
| ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| Quiz Completed
| Total number of quiz completions from your quiz pin ads
**Field Name:** `QUIZ_COMPLETED`
**Type:** metric |
| Quiz Completion Rate
| The percentage of quiz starts that resulted in quiz completions
**Field Name:** `QUIZ_COMPLETION_RATE`
**Type:** metric |
### Showcase Engagements
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Showcase Pin Clicks
| Total number of clicks on your showcase pins
**Field Name:** `SHOWCASE_PIN_CLICKTHROUGH`
**Type:** metric |
| Showcase Subpage Clicks
| Total number of clicks on showcase subpages
**Field Name:** `SHOWCASE_SUBPAGE_CLICKTHROUGH`
**Type:** metric |
| Showcase Subpage Closeups
| Total number of closeup views on showcase subpages
**Field Name:** `SHOWCASE_SUBPAGE_CLOSEUP`
**Type:** metric |
| Showcase Subpage Impressions
| Total number of impressions on showcase subpages
**Field Name:** `SHOWCASE_SUBPAGE_IMPRESSION`
**Type:** metric |
| Showcase Subpage Saves
| Total number of saves (repins) on showcase subpages
**Field Name:** `SHOWCASE_SUBPAGE_REPIN`
**Type:** metric |
| Showcase Subpage Swipe Left
| Total number of left swipes on showcase subpages
**Field Name:** `SHOWCASE_SUBPAGE_SWIPE_LEFT`
**Type:** metric |
| Showcase Subpage Swipe Right
| Total number of right swipes on showcase subpages
**Field Name:** `SHOWCASE_SUBPAGE_SWIPE_RIGHT`
**Type:** metric |
| Showcase Subpin Clicks
| Total number of clicks on showcase subpins
**Field Name:** `SHOWCASE_SUBPIN_CLICKTHROUGH`
**Type:** metric |
| Showcase Subpin Impressions
| Total number of impressions on showcase subpins
**Field Name:** `SHOWCASE_SUBPIN_IMPRESSION`
**Type:** metric |
| Showcase Subpin Saves
| Total number of saves (repins) on showcase subpins
**Field Name:** `SHOWCASE_SUBPIN_REPIN`
**Type:** metric |
| Showcase Subpin Swipe Left
| Total number of left swipes on showcase subpins
**Field Name:** `SHOWCASE_SUBPIN_SWIPE_LEFT`
**Type:** metric |
| Showcase Subpin Swipe Right
| Total number of right swipes on showcase subpins
**Field Name:** `SHOWCASE_SUBPIN_SWIPE_RIGHT`
**Type:** metric |
| Showcase Card Swipe Forward
| Total number of forward swipes on showcase card thumbnails
**Field Name:** `SHOWCASE_CARD_THUMBNAIL_SWIPE_FORWARD`
**Type:** metric |
| Showcase Card Swipe Backward
| Total number of backward swipes on showcase card thumbnails
**Field Name:** `SHOWCASE_CARD_THUMBNAIL_SWIPE_BACKWARD`
**Type:** metric |
| Showcase Avg Closeups/Session
| Average number of showcase subpage closeups per session
**Field Name:** `SHOWCASE_AVERAGE_SUBPAGE_CLOSEUP_PER_SESSION`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
Google Ads metrics & dimensions
TikTok Ads metrics & dimensions
# Salesforce Metrics & Dimensions
Source: https://support.detrics.io/data-source/salesforce/fields
Complete reference for Salesforce dimensions and metrics
**Last updated:** August 6, 2026
329 dimensions
48 metrics
This reference covers all available dimensions and metrics for Salesforce data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Salesforce data.
### Account
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Account ID
| Unique 18-character Salesforce ID for the account
**Field Name:** `accountId`
**Type:** dimension |
| Account Name
| Name of the account (company)
**Field Name:** `accountName`
**Type:** dimension |
| Account Type
| Picklist categorising the account (e.g. Customer, Prospect, Partner)
**Field Name:** `accountType`
**Type:** dimension |
| Account Industry
| Industry the account operates in
**Field Name:** `accountIndustry`
**Type:** dimension |
| Account Rating
| Rating picklist (Hot/Warm/Cold)
**Field Name:** `accountRating`
**Type:** dimension |
| Account Ownership
| Ownership type (Public/Private/Subsidiary)
**Field Name:** `accountOwnership`
**Type:** dimension |
| Account Website
| Account website URL
**Field Name:** `accountWebsite`
**Type:** dimension |
| Account Phone
| Main phone number for the account
**Field Name:** `accountPhone`
**Type:** dimension |
| Account Fax
| Fax number for the account
**Field Name:** `accountFax`
**Type:** dimension |
| Account Number
| External account number (free-text identifier)
**Field Name:** `accountAccountNumber`
**Type:** dimension |
| Account Billing City
| Billing-address city
**Field Name:** `accountBillingCity`
**Type:** dimension |
| Account Billing State
| Billing-address state or province
**Field Name:** `accountBillingState`
**Type:** dimension |
| Account Billing Country
| Billing-address country
**Field Name:** `accountBillingCountry`
**Type:** dimension |
| Account Billing Postal Code
| Billing-address postal/ZIP code
**Field Name:** `accountBillingPostalCode`
**Type:** dimension |
| Account Billing Street
| Billing-address street
**Field Name:** `accountBillingStreet`
**Type:** dimension |
| Account Shipping City
| Shipping-address city
**Field Name:** `accountShippingCity`
**Type:** dimension |
| Account Shipping Country
| Shipping-address country
**Field Name:** `accountShippingCountry`
**Type:** dimension |
| Account Owner ID
| Salesforce User ID of the account owner
**Field Name:** `accountOwnerId`
**Type:** dimension |
| Account Owner Name
| Full name of the user who owns the account
**Field Name:** `accountOwnerName`
**Type:** dimension |
| Account Parent ID
| Parent account ID (for account hierarchies)
**Field Name:** `accountParentId`
**Type:** dimension |
| Account Parent Name
| Parent account name
**Field Name:** `accountParentName`
**Type:** dimension |
| Account Created Date
| Date the account was created
**Field Name:** `accountCreatedDate`
**Type:** dimension |
| Account Last Modified Date
| Date the account was last edited
**Field Name:** `accountLastModifiedDate`
**Type:** dimension |
| Account Last Activity Date
| Date of the most recent activity (task/event) on the account
**Field Name:** `accountLastActivityDate`
**Type:** dimension |
| Account Description
| Free-text description of the account
**Field Name:** `accountDescription`
**Type:** dimension |
### Contact
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Contact ID
| Unique 18-character ID for the contact
**Field Name:** `contactId`
**Type:** dimension |
| Contact Salutation
| Salutation prefix (e.g., Mr., Ms., Dr.)
**Field Name:** `contactSalutation`
**Type:** dimension |
| Contact First Name
| First name of the contact
**Field Name:** `contactFirstName`
**Type:** dimension |
| Contact Last Name
| Last name of the contact
**Field Name:** `contactLastName`
**Type:** dimension |
| Contact Full Name
| Salesforce-computed full name (first + last)
**Field Name:** `contactFullName`
**Type:** dimension |
| Contact Email
| Primary email address of the contact
**Field Name:** `contactEmail`
**Type:** dimension |
| Contact Phone
| Primary phone of the contact
**Field Name:** `contactPhone`
**Type:** dimension |
| Contact Mobile Phone
| Mobile phone of the contact
**Field Name:** `contactMobilePhone`
**Type:** dimension |
| Contact Title
| Job title of the contact
**Field Name:** `contactTitle`
**Type:** dimension |
| Contact Department
| Department within the company
**Field Name:** `contactDepartment`
**Type:** dimension |
| Contact Lead Source
| Original source the contact came from (Web/Referral/etc.)
**Field Name:** `contactLeadSource`
**Type:** dimension |
| Contact Mailing City
| City of the mailing address
**Field Name:** `contactMailingCity`
**Type:** dimension |
| Contact Mailing State
| State of the mailing address
**Field Name:** `contactMailingState`
**Type:** dimension |
| Contact Mailing Country
| Country of the mailing address
**Field Name:** `contactMailingCountry`
**Type:** dimension |
| Contact Mailing Postal Code
| Postal/ZIP code of the mailing address
**Field Name:** `contactMailingPostalCode`
**Type:** dimension |
| Contact Account ID
| ID of the account this contact belongs to
**Field Name:** `contactAccountId`
**Type:** dimension |
| Contact Account Name
| Name of the account this contact belongs to
**Field Name:** `contactAccountName`
**Type:** dimension |
| Contact Owner ID
| User ID of the contact owner
**Field Name:** `contactOwnerId`
**Type:** dimension |
| Contact Owner Name
| Full name of the contact owner
**Field Name:** `contactOwnerName`
**Type:** dimension |
| Contact Created Date
| Date the contact was created
**Field Name:** `contactCreatedDate`
**Type:** dimension |
| Contact Last Modified Date
| Date the contact was last edited
**Field Name:** `contactLastModifiedDate`
**Type:** dimension |
| Contact Last Activity Date
| Date of the most recent activity on the contact
**Field Name:** `contactLastActivityDate`
**Type:** dimension |
| Contact Birthdate
| Birthdate of the contact
**Field Name:** `contactBirthdate`
**Type:** dimension |
| Contact Description
| Free-text description of the contact
**Field Name:** `contactDescription`
**Type:** dimension |
| Contact Fax
| Fax number of the contact
**Field Name:** `contactFax`
**Type:** dimension |
| Contact Home Phone
| Home phone of the contact
**Field Name:** `contactHomePhone`
**Type:** dimension |
| Contact Other Phone
| Other phone of the contact
**Field Name:** `contactOtherPhone`
**Type:** dimension |
| Contact Pronouns
| Pronouns of the contact (feature must be enabled in org)
**Field Name:** `contactPronouns`
**Type:** dimension |
| Contact Gender Identity
| Gender identity of the contact (feature must be enabled in org)
**Field Name:** `contactGenderIdentity`
**Type:** dimension |
### Lead
| | |
| ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------- |
| Lead ID
| Unique 18-character ID for the lead
**Field Name:** `leadId`
**Type:** dimension |
| Lead Salutation
| Salutation prefix (e.g., Mr., Ms., Dr.)
**Field Name:** `leadSalutation`
**Type:** dimension |
| Lead First Name
| First name of the lead
**Field Name:** `leadFirstName`
**Type:** dimension |
| Lead Last Name
| Last name of the lead
**Field Name:** `leadLastName`
**Type:** dimension |
| Lead Name
| Salesforce-computed full name of the lead
**Field Name:** `leadName`
**Type:** dimension |
| Lead Email
| Email address of the lead
**Field Name:** `leadEmail`
**Type:** dimension |
| Lead Phone
| Phone number of the lead
**Field Name:** `leadPhone`
**Type:** dimension |
| Lead Company
| Company name attached to the lead
**Field Name:** `leadCompany`
**Type:** dimension |
| Lead Title
| Job title of the lead
**Field Name:** `leadTitle`
**Type:** dimension |
| Lead Status
| Current status in the lead funnel (Open/Working/Converted/etc.)
**Field Name:** `leadStatus`
**Type:** dimension |
| Lead Source
| Source the lead originated from
**Field Name:** `leadSource`
**Type:** dimension |
| Lead Industry
| Industry of the lead
**Field Name:** `leadIndustry`
**Type:** dimension |
| Lead Rating
| Rating (Hot/Warm/Cold)
**Field Name:** `leadRating`
**Type:** dimension |
| Lead Country
| Country of the lead
**Field Name:** `leadCountry`
**Type:** dimension |
| Lead City
| City of the lead
**Field Name:** `leadCity`
**Type:** dimension |
| Lead State
| State of the lead
**Field Name:** `leadState`
**Type:** dimension |
| Lead Owner ID
| User ID of the lead owner
**Field Name:** `leadOwnerId`
**Type:** dimension |
| Lead Owner Name
| Full name of the lead owner
**Field Name:** `leadOwnerName`
**Type:** dimension |
| Lead Is Converted
| Whether the lead has been converted to a contact/opportunity
**Field Name:** `leadIsConverted`
**Type:** dimension |
| Lead Converted Date
| Date the lead was converted
**Field Name:** `leadConvertedDate`
**Type:** dimension |
| Lead Created Date
| Date the lead was created
**Field Name:** `leadCreatedDate`
**Type:** dimension |
| Lead Last Modified Date
| Date the lead was last edited
**Field Name:** `leadLastModifiedDate`
**Type:** dimension |
| Lead Converted Account ID
| Account ID created when the lead was converted
**Field Name:** `leadConvertedAccountId`
**Type:** dimension |
| Lead Converted Account Name
| Name of the account created on conversion
**Field Name:** `leadConvertedAccountName`
**Type:** dimension |
| Lead Converted Contact ID
| Contact ID created when the lead was converted
**Field Name:** `leadConvertedContactId`
**Type:** dimension |
| Lead Converted Contact Name
| Name of the contact created on conversion
**Field Name:** `leadConvertedContactName`
**Type:** dimension |
| Lead Converted Opportunity ID
| Opportunity ID created when the lead was converted
**Field Name:** `leadConvertedOpportunityId`
**Type:** dimension |
| Lead Converted Opportunity Name
| Name of the opportunity created on conversion
**Field Name:** `leadConvertedOpportunityName`
**Type:** dimension |
| Lead Description
| Free-text description of the lead
**Field Name:** `leadDescription`
**Type:** dimension |
| Lead Has Opted Out Of Email
| True if the lead has opted out of email communications
**Field Name:** `leadHasOptedOutOfEmail`
**Type:** dimension |
| Lead Pronouns
| Pronouns of the lead (feature must be enabled in org)
**Field Name:** `leadPronouns`
**Type:** dimension |
| Lead Gender Identity
| Gender identity of the lead (feature must be enabled in org)
**Field Name:** `leadGenderIdentity`
**Type:** dimension |
### Opportunity
| | |
| --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Opportunity ID
| Unique 18-character ID for the opportunity
**Field Name:** `opportunityId`
**Type:** dimension |
| Opportunity Name
| Name of the opportunity (deal)
**Field Name:** `opportunityName`
**Type:** dimension |
| Opportunity Stage Name
| Current stage in the sales pipeline
**Field Name:** `opportunityStageName`
**Type:** dimension |
| Opportunity Type
| Type of opportunity (New Business/Existing Customer/etc.)
**Field Name:** `opportunityType`
**Type:** dimension |
| Opportunity Lead Source
| Source that generated the opportunity
**Field Name:** `opportunityLeadSource`
**Type:** dimension |
| Opportunity Next Step
| Description of the next planned step
**Field Name:** `opportunityNextStep`
**Type:** dimension |
| Opportunity Description
| Free-text description of the opportunity
**Field Name:** `opportunityDescription`
**Type:** dimension |
| Opportunity Campaign ID
| ID of the primary campaign source for this opportunity
**Field Name:** `opportunityCampaignId`
**Type:** dimension |
| Opportunity Campaign Name
| Name of the primary campaign source
**Field Name:** `opportunityCampaignName`
**Type:** dimension |
| Opportunity Account ID
| ID of the account this opportunity belongs to
**Field Name:** `opportunityAccountId`
**Type:** dimension |
| Opportunity Account Name
| Name of the account this opportunity belongs to
**Field Name:** `opportunityAccountName`
**Type:** dimension |
| Opportunity Contact ID
| ID of the primary contact on the opportunity
**Field Name:** `opportunityContactId`
**Type:** dimension |
| Opportunity Contact Name
| Name of the primary contact on the opportunity
**Field Name:** `opportunityContactName`
**Type:** dimension |
| Opportunity Pricebook ID
| ID of the pricebook used for line items
**Field Name:** `opportunityPricebookId`
**Type:** dimension |
| Opportunity Owner ID
| User ID of the opportunity owner
**Field Name:** `opportunityOwnerId`
**Type:** dimension |
| Opportunity Owner Name
| Full name of the opportunity owner
**Field Name:** `opportunityOwnerName`
**Type:** dimension |
| Opportunity Record Type ID
| Record Type ID assigned to this opportunity
**Field Name:** `opportunityRecordTypeId`
**Type:** dimension |
| Opportunity Record Type Name
| Name of the Record Type assigned to this opportunity
**Field Name:** `opportunityRecordTypeName`
**Type:** dimension |
| Opportunity Forecast Category Name
| Forecast category (Pipeline/Best Case/Commit/Closed)
**Field Name:** `opportunityForecastCategoryName`
**Type:** dimension |
| Opportunity Is Closed
| True when the opportunity is in a closed stage (won or lost)
**Field Name:** `opportunityIsClosed`
**Type:** dimension |
| Opportunity Is Won
| True when the opportunity is in a closed-won stage
**Field Name:** `opportunityIsWon`
**Type:** dimension |
| Opportunity Has Open Activity
| True when the opportunity has at least one open task/event
**Field Name:** `opportunityHasOpenActivity`
**Type:** dimension |
| Opportunity Created Date
| Date the opportunity was created
**Field Name:** `opportunityCreatedDate`
**Type:** dimension |
| Opportunity Close Date
| Expected (or actual) close date
**Field Name:** `opportunityCloseDate`
**Type:** dimension |
| Opportunity Last Stage Change Date
| Timestamp when the opportunity stage last changed
**Field Name:** `opportunityLastStageChangeDate`
**Type:** dimension |
| Opportunity Last Modified Date
| Date the opportunity was last edited
**Field Name:** `opportunityLastModifiedDate`
**Type:** dimension |
| Opportunity Last Activity Date
| Date of the most recent activity on the opportunity
**Field Name:** `opportunityLastActivityDate`
**Type:** dimension |
### Case
| | |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| Case ID
| Unique 18-character ID for the case
**Field Name:** `caseId`
**Type:** dimension |
| Case Number
| Auto-incrementing case number visible to users
**Field Name:** `caseNumber`
**Type:** dimension |
| Case Subject
| Subject line of the case
**Field Name:** `caseSubject`
**Type:** dimension |
| Case Status
| Current status of the case
**Field Name:** `caseStatus`
**Type:** dimension |
| Case Priority
| Priority of the case (High/Medium/Low)
**Field Name:** `casePriority`
**Type:** dimension |
| Case Origin
| Channel the case originated from (Web/Email/Phone/etc.)
**Field Name:** `caseOrigin`
**Type:** dimension |
| Case Type
| Type categorisation
**Field Name:** `caseType`
**Type:** dimension |
| Case Reason
| Reason the case was opened
**Field Name:** `caseReason`
**Type:** dimension |
| Case Description
| Free-text description of the case
**Field Name:** `caseDescription`
**Type:** dimension |
| Case Account ID
| ID of the account associated with the case
**Field Name:** `caseAccountId`
**Type:** dimension |
| Case Account Name
| Name of the account associated with the case
**Field Name:** `caseAccountName`
**Type:** dimension |
| Case Contact ID
| ID of the primary contact on the case
**Field Name:** `caseContactId`
**Type:** dimension |
| Case Contact Name
| Name of the primary contact on the case
**Field Name:** `caseContactName`
**Type:** dimension |
| Case Owner ID
| User/Queue ID owning the case
**Field Name:** `caseOwnerId`
**Type:** dimension |
| Case Owner Name
| Name of the user/queue owning the case
**Field Name:** `caseOwnerName`
**Type:** dimension |
| Case Record Type ID
| Record Type ID assigned to this case
**Field Name:** `caseRecordTypeId`
**Type:** dimension |
| Case Record Type Name
| Name of the Record Type assigned to this case
**Field Name:** `caseRecordTypeName`
**Type:** dimension |
| Case Supplied Name
| Name supplied by the user via Web-to-Case / Email-to-Case
**Field Name:** `caseSuppliedName`
**Type:** dimension |
| Case Supplied Email
| Email supplied by the user via Web-to-Case / Email-to-Case
**Field Name:** `caseSuppliedEmail`
**Type:** dimension |
| Case Supplied Phone
| Phone supplied by the user via Web-to-Case
**Field Name:** `caseSuppliedPhone`
**Type:** dimension |
| Case Supplied Company
| Company supplied by the user via Web-to-Case
**Field Name:** `caseSuppliedCompany`
**Type:** dimension |
| Case Is Closed
| True when the case status is closed
**Field Name:** `caseIsClosed`
**Type:** dimension |
| Case Is Escalated
| True when the case has been escalated
**Field Name:** `caseIsEscalated`
**Type:** dimension |
| Case Created Date
| Date the case was created
**Field Name:** `caseCreatedDate`
**Type:** dimension |
| Case Closed Date
| Date the case was closed
**Field Name:** `caseClosedDate`
**Type:** dimension |
| Case Last Modified Date
| Date the case was last edited
**Field Name:** `caseLastModifiedDate`
**Type:** dimension |
### Campaign
| | |
| -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| Unique 18-character ID for the campaign
**Field Name:** `campaignId`
**Type:** dimension |
| Campaign Name
| Name of the campaign
**Field Name:** `campaignName`
**Type:** dimension |
| Campaign Type
| Campaign type (Email/Event/Webinar/etc.)
**Field Name:** `campaignType`
**Type:** dimension |
| Campaign Status
| Campaign status (Planned/In Progress/Completed/Aborted)
**Field Name:** `campaignStatus`
**Type:** dimension |
| Campaign Description
| Free-text description of the campaign
**Field Name:** `campaignDescription`
**Type:** dimension |
| Campaign Parent ID
| Parent campaign ID (campaign hierarchies)
**Field Name:** `campaignParentId`
**Type:** dimension |
| Campaign Parent Name
| Parent campaign name
**Field Name:** `campaignParentName`
**Type:** dimension |
| Campaign Owner ID
| User ID of the campaign owner
**Field Name:** `campaignOwnerId`
**Type:** dimension |
| Campaign Owner Name
| Full name of the campaign owner
**Field Name:** `campaignOwnerName`
**Type:** dimension |
| Campaign Is Active
| Whether the campaign is active
**Field Name:** `campaignIsActive`
**Type:** dimension |
| Campaign Start Date
| Planned start date of the campaign
**Field Name:** `campaignStartDate`
**Type:** dimension |
| Campaign End Date
| Planned end date of the campaign
**Field Name:** `campaignEndDate`
**Type:** dimension |
| Campaign Created Date
| Date the campaign was created
**Field Name:** `campaignCreatedDate`
**Type:** dimension |
| Campaign Last Modified Date
| Date the campaign was last edited
**Field Name:** `campaignLastModifiedDate`
**Type:** dimension |
### Task
| | |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Task ID
| Unique 18-character ID for the task
**Field Name:** `taskId`
**Type:** dimension |
| Task Subject
| Subject of the task
**Field Name:** `taskSubject`
**Type:** dimension |
| Task Status
| Current status of the task
**Field Name:** `taskStatus`
**Type:** dimension |
| Task Priority
| Priority of the task
**Field Name:** `taskPriority`
**Type:** dimension |
| Task Type
| Task subtype (Task/Call/Email/etc.)
**Field Name:** `taskType`
**Type:** dimension |
| Task Description
| Free-text description of the task
**Field Name:** `taskDescription`
**Type:** dimension |
| Task Who ID
| Polymorphic ID — Lead or Contact the task relates to
**Field Name:** `taskWhoId`
**Type:** dimension |
| Task What ID
| Polymorphic ID — Account/Opportunity/Case/etc. the task relates to
**Field Name:** `taskWhatId`
**Type:** dimension |
| Task Account ID
| Account ID derived from the WhatId or contact relationship
**Field Name:** `taskAccountId`
**Type:** dimension |
| Task Account Name
| Account name derived from the task relationship
**Field Name:** `taskAccountName`
**Type:** dimension |
| Task Owner ID
| User ID of the task owner
**Field Name:** `taskOwnerId`
**Type:** dimension |
| Task Owner Name
| Full name of the task owner
**Field Name:** `taskOwnerName`
**Type:** dimension |
| Task Is Closed
| True when the task is in a closed status
**Field Name:** `taskIsClosed`
**Type:** dimension |
| Task Activity Date
| Due date of the task
**Field Name:** `taskActivityDate`
**Type:** dimension |
| Task Completed Date Time
| Timestamp the task was completed
**Field Name:** `taskCompletedDateTime`
**Type:** dimension |
| Task Created Date
| Date the task was created
**Field Name:** `taskCreatedDate`
**Type:** dimension |
| Task Is Recurrence
| True when the task is part of a recurring series
**Field Name:** `taskIsRecurrence`
**Type:** dimension |
| Task Recurrence Start Date
| Start date of the recurring series
**Field Name:** `taskRecurrenceStartDateOnly`
**Type:** dimension |
| Task Recurrence End Date
| End date of the recurring series
**Field Name:** `taskRecurrenceEndDateOnly`
**Type:** dimension |
| Task Recurrence Time Zone
| IANA timezone key for the recurring series
**Field Name:** `taskRecurrenceTimeZoneSidKey`
**Type:** dimension |
| Task Recurrence Type
| Recurrence pattern type (Daily/Weekly/Monthly/Yearly)
**Field Name:** `taskRecurrenceType`
**Type:** dimension |
| Task Recurrence Interval
| Interval between recurrences (e.g., every N days/weeks)
**Field Name:** `taskRecurrenceInterval`
**Type:** dimension |
| Task Recurrence Day Of Week Mask
| Bitmask of selected weekdays for weekly recurrences
**Field Name:** `taskRecurrenceDayOfWeekMask`
**Type:** dimension |
| Task Recurrence Day Of Month
| Day of month for monthly recurrences
**Field Name:** `taskRecurrenceDayOfMonth`
**Type:** dimension |
| Task Recurrence Instance
| Which occurrence within the month (First/Second/Third/Fourth/Last)
**Field Name:** `taskRecurrenceInstance`
**Type:** dimension |
| Task Recurrence Month Of Year
| Month of year for yearly recurrences
**Field Name:** `taskRecurrenceMonthOfYear`
**Type:** dimension |
| Task Recurrence Regenerated Type
| Whether the next task is regenerated after completion
**Field Name:** `taskRecurrenceRegeneratedType`
**Type:** dimension |
### Event
| | |
| -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| Event ID
| Unique 18-character ID for the event
**Field Name:** `eventId`
**Type:** dimension |
| Event Subject
| Subject of the event (meeting)
**Field Name:** `eventSubject`
**Type:** dimension |
| Event Description
| Free-text description of the event
**Field Name:** `eventDescription`
**Type:** dimension |
| Event Location
| Location of the event (e.g., Zoom, room name, city)
**Field Name:** `eventLocation`
**Type:** dimension |
| Event Type
| Event subtype
**Field Name:** `eventType`
**Type:** dimension |
| Event Who ID
| Polymorphic ID — Lead or Contact the event relates to
**Field Name:** `eventWhoId`
**Type:** dimension |
| Event What ID
| Polymorphic ID — Account/Opportunity/etc. the event relates to
**Field Name:** `eventWhatId`
**Type:** dimension |
| Event Account ID
| Account ID derived from the event relationship
**Field Name:** `eventAccountId`
**Type:** dimension |
| Event Account Name
| Account name derived from the event relationship
**Field Name:** `eventAccountName`
**Type:** dimension |
| Event Owner ID
| User ID of the event owner
**Field Name:** `eventOwnerId`
**Type:** dimension |
| Event Owner Name
| Full name of the event owner
**Field Name:** `eventOwnerName`
**Type:** dimension |
| Event Is All Day Event
| True for all-day events (no specific start time)
**Field Name:** `eventIsAllDayEvent`
**Type:** dimension |
| Event Start Date Time
| Event start timestamp
**Field Name:** `eventStartDateTime`
**Type:** dimension |
| Event End Date Time
| Event end timestamp
**Field Name:** `eventEndDateTime`
**Type:** dimension |
| Event Activity Date Time
| Activity timestamp (computed by Salesforce from start time)
**Field Name:** `eventActivityDateTime`
**Type:** dimension |
| Event Created Date
| Date the event was created
**Field Name:** `eventCreatedDate`
**Type:** dimension |
| Event Is Recurrence
| True when the event is part of a recurring series
**Field Name:** `eventIsRecurrence`
**Type:** dimension |
| Event Recurrence Start Date Time
| Start timestamp of the recurring series
**Field Name:** `eventRecurrenceStartDateTime`
**Type:** dimension |
| Event Recurrence End Date
| End date of the recurring series
**Field Name:** `eventRecurrenceEndDateOnly`
**Type:** dimension |
| Event Recurrence Time Zone
| IANA timezone key for the recurring series
**Field Name:** `eventRecurrenceTimeZoneSidKey`
**Type:** dimension |
| Event Recurrence Type
| Recurrence pattern type (Daily/Weekly/Monthly/Yearly)
**Field Name:** `eventRecurrenceType`
**Type:** dimension |
| Event Recurrence Interval
| Interval between recurrences
**Field Name:** `eventRecurrenceInterval`
**Type:** dimension |
| Event Recurrence Day Of Week Mask
| Bitmask of selected weekdays for weekly recurrences
**Field Name:** `eventRecurrenceDayOfWeekMask`
**Type:** dimension |
| Event Recurrence Day Of Month
| Day of month for monthly recurrences
**Field Name:** `eventRecurrenceDayOfMonth`
**Type:** dimension |
| Event Recurrence Instance
| Which occurrence within the month (First/Second/Third/Fourth/Last)
**Field Name:** `eventRecurrenceInstance`
**Type:** dimension |
| Event Recurrence Month Of Year
| Month of year for yearly recurrences
**Field Name:** `eventRecurrenceMonthOfYear`
**Type:** dimension |
| Event Show As
| Calendar visibility (Busy/Out Of Office/Free)
**Field Name:** `eventShowAs`
**Type:** dimension |
| Event Is Child
| True for child events under a group event
**Field Name:** `eventIsChild`
**Type:** dimension |
| Event Is Group Event
| True when the event is a group/multi-attendee event
**Field Name:** `eventIsGroupEvent`
**Type:** dimension |
| Event Group Event Type
| Group event type (Group Event / Proposed)
**Field Name:** `eventGroupEventType`
**Type:** dimension |
### User
| | |
| ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------- |
| User ID
| Unique 18-character User ID
**Field Name:** `userId`
**Type:** dimension |
| User Name
| Display name (first + last)
**Field Name:** `userName`
**Type:** dimension |
| User First Name
| First name
**Field Name:** `userFirstName`
**Type:** dimension |
| User Last Name
| Last name
**Field Name:** `userLastName`
**Type:** dimension |
| Username
| Login username (email-style)
**Field Name:** `userUsername`
**Type:** dimension |
| User Alias
| Short alias for the user (≤8 chars)
**Field Name:** `userAlias`
**Type:** dimension |
| User Email
| Email address
**Field Name:** `userEmail`
**Type:** dimension |
| User Title
| Job title
**Field Name:** `userTitle`
**Type:** dimension |
| User Department
| Department
**Field Name:** `userDepartment`
**Type:** dimension |
| User Company Name
| Company name on the user record
**Field Name:** `userCompanyName`
**Type:** dimension |
| User Division
| Division on the user record
**Field Name:** `userDivision`
**Type:** dimension |
| User Employee Number
| Employee number on the user record
**Field Name:** `userEmployeeNumber`
**Type:** dimension |
| User Phone
| Primary phone
**Field Name:** `userPhone`
**Type:** dimension |
| User Mobile Phone
| Mobile phone
**Field Name:** `userMobilePhone`
**Type:** dimension |
| User Fax
| Fax number
**Field Name:** `userFax`
**Type:** dimension |
| User Street
| Street address
**Field Name:** `userStreet`
**Type:** dimension |
| User City
| City
**Field Name:** `userCity`
**Type:** dimension |
| User State
| State or province
**Field Name:** `userState`
**Type:** dimension |
| User Postal Code
| Postal/ZIP code
**Field Name:** `userPostalCode`
**Type:** dimension |
| User Country
| Country
**Field Name:** `userCountry`
**Type:** dimension |
| User Profile ID
| ID of the assigned Profile
**Field Name:** `userProfileId`
**Type:** dimension |
| User Profile Name
| Name of the assigned Profile
**Field Name:** `userProfileName`
**Type:** dimension |
| User Role ID
| ID of the assigned Role
**Field Name:** `userRoleId`
**Type:** dimension |
| User Manager ID
| ID of the user's manager
**Field Name:** `userManagerId`
**Type:** dimension |
| User Manager Name
| Name of the user's manager
**Field Name:** `userManagerName`
**Type:** dimension |
| User Type
| User license type (Standard, CustomerSuccess, etc.)
**Field Name:** `userUserType`
**Type:** dimension |
| User Time Zone
| IANA timezone key
**Field Name:** `userTimeZone`
**Type:** dimension |
| User Locale
| Locale key (e.g., en\_US) — controls number/date formatting
**Field Name:** `userLocaleSidKey`
**Type:** dimension |
| User Language
| UI language key (e.g., en\_US, es)
**Field Name:** `userLanguageLocaleKey`
**Type:** dimension |
| User Email Encoding
| Character encoding for outbound email (e.g., UTF-8)
**Field Name:** `userEmailEncodingKey`
**Type:** dimension |
| User Digest Frequency
| Chatter digest email frequency (D/W/N)
**Field Name:** `userDigestFrequency`
**Type:** dimension |
| User Call Center ID
| ID of the assigned Call Center (CTI)
**Field Name:** `userCallCenterId`
**Type:** dimension |
| User Receives Admin Info Emails
| Whether the user receives admin info emails from Salesforce
**Field Name:** `userReceivesAdminInfoEmails`
**Type:** dimension |
| User Receives Info Emails
| Whether the user receives marketing/info emails from Salesforce
**Field Name:** `userReceivesInfoEmails`
**Type:** dimension |
| User Forecast Enabled
| Whether the user is enabled for forecasting
**Field Name:** `userForecastEnabled`
**Type:** dimension |
| User Is Active
| Whether the user is currently active
**Field Name:** `userIsActive`
**Type:** dimension |
| User About Me
| Free-text about-me field shown on the user profile
**Field Name:** `userAboutMe`
**Type:** dimension |
| User Last Login Date
| Most recent login timestamp
**Field Name:** `userLastLoginDate`
**Type:** dimension |
| User Created Date
| Date the user was created
**Field Name:** `userCreatedDate`
**Type:** dimension |
### User Preferences
| | |
| -------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| User Activity Reminders Popup
| Activity reminders popup preference
**Field Name:** `userUserPreferencesActivityRemindersPopup`
**Type:** dimension |
| User Event Reminders Default
| Default state of the event reminders checkbox
**Field Name:** `userUserPreferencesEventRemindersCheckboxDefault`
**Type:** dimension |
| User Task Reminders Default
| Default state of the task reminders checkbox
**Field Name:** `userUserPreferencesTaskRemindersCheckboxDefault`
**Type:** dimension |
| User Reminder Sound Off
| Disable reminder sounds
**Field Name:** `userUserPreferencesReminderSoundOff`
**Type:** dimension |
| User Suppress Event SFX Reminders
| Suppress event SFX reminders
**Field Name:** `userUserPreferencesSuppressEventSFXReminders`
**Type:** dimension |
| User Suppress Task SFX Reminders
| Suppress task SFX reminders
**Field Name:** `userUserPreferencesSuppressTaskSFXReminders`
**Type:** dimension |
| User Reverse Open Activities View
| Reverse the Open Activities list order
**Field Name:** `userUserPreferencesReverseOpenActivitiesView`
**Type:** dimension |
| User Disable All Feeds Email
| Disable all Chatter feed emails
**Field Name:** `userUserPreferencesDisableAllFeedsEmail`
**Type:** dimension |
| User Disable Followers Email
| Disable new-follower email notifications
**Field Name:** `userUserPreferencesDisableFollowersEmail`
**Type:** dimension |
| User Disable Profile Post Email
| Disable profile-post email notifications
**Field Name:** `userUserPreferencesDisableProfilePostEmail`
**Type:** dimension |
| User Disable Change Comment Email
| Disable change-comment email notifications
**Field Name:** `userUserPreferencesDisableChangeCommentEmail`
**Type:** dimension |
| User Disable Later Comment Email
| Disable later-comment email notifications
**Field Name:** `userUserPreferencesDisableLaterCommentEmail`
**Type:** dimension |
| User Disable Like Email
| Disable like email notifications
**Field Name:** `userUserPreferencesDisableLikeEmail`
**Type:** dimension |
| User Disable Message Email
| Disable message email notifications
**Field Name:** `userUserPreferencesDisableMessageEmail`
**Type:** dimension |
| User Disable Endorsement Email
| Disable endorsement email notifications
**Field Name:** `userUserPreferencesDisableEndorsementEmail`
**Type:** dimension |
| User Disable Feedback Email
| Disable feedback email notifications
**Field Name:** `userUserPreferencesDisableFeedbackEmail`
**Type:** dimension |
| User Disable Mentions Post Email
| Disable mentions-in-post email notifications
**Field Name:** `userUserPreferencesDisableMentionsPostEmail`
**Type:** dimension |
| User Disable Share Post Email
| Disable share-post email notifications
**Field Name:** `userUserPreferencesDisableSharePostEmail`
**Type:** dimension |
| User Disable Bookmark Email
| Disable bookmark email notifications
**Field Name:** `userUserPreferencesDisableBookmarkEmail`
**Type:** dimension |
| User Disable Reward Email
| Disable reward email notifications
**Field Name:** `userUserPreferencesDisableRewardEmail`
**Type:** dimension |
| User Disable Work Email
| Disable work email notifications
**Field Name:** `userUserPreferencesDisableWorkEmail`
**Type:** dimension |
| User Disable File Share Notifications (API)
| Disable file-share notifications via API
**Field Name:** `userUserPreferencesDisableFileShareNotificationsForApi`
**Type:** dimension |
| User Disable Profile Post Comment Email
| Disable profile-post comment email notifications
**Field Name:** `userUserPreferencesDisProfPostCommentEmail`
**Type:** dimension |
| User Disable Mentions Comment Email
| Disable mentions-in-comment email notifications
**Field Name:** `userUserPreferencesDisMentionsCommentEmail`
**Type:** dimension |
| User Disable Comment After Like Email
| Disable comment-after-like email notifications
**Field Name:** `userUserPreferencesDisCommentAfterLikeEmail`
**Type:** dimension |
| User Show Email To External Users
| Expose email to external community users
**Field Name:** `userUserPreferencesShowEmailToExternalUsers`
**Type:** dimension |
| User Show Email To Guest Users
| Expose email to guest users
**Field Name:** `userUserPreferencesShowEmailToGuestUsers`
**Type:** dimension |
| User Show Title To External Users
| Expose title to external community users
**Field Name:** `userUserPreferencesShowTitleToExternalUsers`
**Type:** dimension |
| User Show Title To Guest Users
| Expose title to guest users
**Field Name:** `userUserPreferencesShowTitleToGuestUsers`
**Type:** dimension |
| User Show Manager To External Users
| Expose manager to external community users
**Field Name:** `userUserPreferencesShowManagerToExternalUsers`
**Type:** dimension |
| User Show Manager To Guest Users
| Expose manager to guest users
**Field Name:** `userUserPreferencesShowManagerToGuestUsers`
**Type:** dimension |
| User Show Work Phone To External Users
| Expose work phone to external community users
**Field Name:** `userUserPreferencesShowWorkPhoneToExternalUsers`
**Type:** dimension |
| User Show Work Phone To Guest Users
| Expose work phone to guest users
**Field Name:** `userUserPreferencesShowWorkPhoneToGuestUsers`
**Type:** dimension |
| User Show Mobile Phone To External Users
| Expose mobile phone to external community users
**Field Name:** `userUserPreferencesShowMobilePhoneToExternalUsers`
**Type:** dimension |
| User Show Mobile Phone To Guest Users
| Expose mobile phone to guest users
**Field Name:** `userUserPreferencesShowMobilePhoneToGuestUsers`
**Type:** dimension |
| User Show Fax To External Users
| Expose fax to external community users
**Field Name:** `userUserPreferencesShowFaxToExternalUsers`
**Type:** dimension |
| User Show Fax To Guest Users
| Expose fax to guest users
**Field Name:** `userUserPreferencesShowFaxToGuestUsers`
**Type:** dimension |
| User Show Street To External Users
| Expose street address to external community users
**Field Name:** `userUserPreferencesShowStreetAddressToExternalUsers`
**Type:** dimension |
| User Show Street To Guest Users
| Expose street address to guest users
**Field Name:** `userUserPreferencesShowStreetAddressToGuestUsers`
**Type:** dimension |
| User Show City To External Users
| Expose city to external community users
**Field Name:** `userUserPreferencesShowCityToExternalUsers`
**Type:** dimension |
| User Show City To Guest Users
| Expose city to guest users
**Field Name:** `userUserPreferencesShowCityToGuestUsers`
**Type:** dimension |
| User Show State To External Users
| Expose state to external community users
**Field Name:** `userUserPreferencesShowStateToExternalUsers`
**Type:** dimension |
| User Show State To Guest Users
| Expose state to guest users
**Field Name:** `userUserPreferencesShowStateToGuestUsers`
**Type:** dimension |
| User Show Postal Code To External Users
| Expose postal code to external community users
**Field Name:** `userUserPreferencesShowPostalCodeToExternalUsers`
**Type:** dimension |
| User Show Postal Code To Guest Users
| Expose postal code to guest users
**Field Name:** `userUserPreferencesShowPostalCodeToGuestUsers`
**Type:** dimension |
| User Show Country To External Users
| Expose country to external community users
**Field Name:** `userUserPreferencesShowCountryToExternalUsers`
**Type:** dimension |
| User Show Country To Guest Users
| Expose country to guest users
**Field Name:** `userUserPreferencesShowCountryToGuestUsers`
**Type:** dimension |
| User Show Profile Pic To Guest Users
| Expose profile picture to guest users
**Field Name:** `userUserPreferencesShowProfilePicToGuestUsers`
**Type:** dimension |
| User Lightning Experience Preferred
| Whether the user prefers Lightning Experience
**Field Name:** `userUserPreferencesLightningExperiencePreferred`
**Type:** dimension |
| User Native Email Client
| Use native email client preference
**Field Name:** `userUserPreferencesNativeEmailClient`
**Type:** dimension |
| User Enable Auto Subscribe For Feeds
| Auto-subscribe to feeds for objects the user creates
**Field Name:** `userUserPreferencesEnableAutoSubForFeeds`
**Type:** dimension |
| User Sort Feed By Comment
| Sort feed by most-recent comment
**Field Name:** `userUserPreferencesSortFeedByComment`
**Type:** dimension |
| User Favorites Show Top Favorites
| Show top favorites in the favorites menu
**Field Name:** `userUserPreferencesFavoritesShowTopFavorites`
**Type:** dimension |
| User Receive No Approver Notifications
| Receive no notifications as an approver
**Field Name:** `userUserPreferencesReceiveNoNotificationsAsApprover`
**Type:** dimension |
| User Receive Delegated Approver Notifications
| Receive notifications as a delegated approver
**Field Name:** `userUserPreferencesReceiveNotificationsAsDelegatedApprover`
**Type:** dimension |
| User Show Forecasting Change Signals
| Show forecasting change signals
**Field Name:** `userUserPreferencesShowForecastingChangeSignals`
**Type:** dimension |
| User Opt Out Of Touch
| Opt out of touch UI on mobile
**Field Name:** `userUserPreferencesOptOutOfTouch`
**Type:** dimension |
| User Path Assistant Collapsed
| Whether the Path assistant defaults to collapsed
**Field Name:** `userUserPreferencesPathAssistantCollapsed`
**Type:** dimension |
### Opportunity Line Item
| | |
| --------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Opportunity Line Item ID
| Unique 18-character ID for the line item
**Field Name:** `opportunityLineItemId`
**Type:** dimension |
| Opportunity Line Item Name
| Auto-computed name of the line item (Opp + Product)
**Field Name:** `opportunityLineItemName`
**Type:** dimension |
| Opportunity Line Item Description
| Free-text description for the line item
**Field Name:** `opportunityLineItemDescription`
**Type:** dimension |
| Opportunity Line Item Opportunity ID
| ID of the parent opportunity
**Field Name:** `opportunityLineItemOpportunityId`
**Type:** dimension |
| Opportunity Line Item Opportunity Name
| Name of the parent opportunity
**Field Name:** `opportunityLineItemOpportunityName`
**Type:** dimension |
| Opportunity Line Item Product ID
| ID of the referenced Product2
**Field Name:** `opportunityLineItemProductId`
**Type:** dimension |
| Opportunity Line Item Product Name
| Name of the referenced product
**Field Name:** `opportunityLineItemProductName`
**Type:** dimension |
| Opportunity Line Item Product Code
| SKU/product code from the referenced product
**Field Name:** `opportunityLineItemProductCode`
**Type:** dimension |
| Opportunity Line Item Service Date
| Service date for the line item
**Field Name:** `opportunityLineItemServiceDate`
**Type:** dimension |
| Opportunity Line Item Pricebook Entry ID
| ID of the underlying PricebookEntry
**Field Name:** `opportunityLineItemPricebookEntryId`
**Type:** dimension |
| Opportunity Line Item Created Date
| Date the line item was created
**Field Name:** `opportunityLineItemCreatedDate`
**Type:** dimension |
| Opportunity Line Item Last Modified Date
| Date the line item was last edited
**Field Name:** `opportunityLineItemLastModifiedDate`
**Type:** dimension |
### Product
| | |
| ------------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| Product ID
| Unique 18-character ID for the product
**Field Name:** `productId`
**Type:** dimension |
| Product Name
| Name of the product
**Field Name:** `productName`
**Type:** dimension |
| Product Code
| SKU/code of the product
**Field Name:** `productCode`
**Type:** dimension |
| Product Description
| Free-text description of the product
**Field Name:** `productDescription`
**Type:** dimension |
| Product Family
| Product family (categorisation picklist)
**Field Name:** `productFamily`
**Type:** dimension |
| Product Is Active
| Whether the product is active
**Field Name:** `productIsActive`
**Type:** dimension |
| Product External ID
| External identifier on the product
**Field Name:** `productExternalId`
**Type:** dimension |
| Product SKU
| Stock-keeping unit
**Field Name:** `productStockKeepingUnit`
**Type:** dimension |
| Product Created Date
| Date the product was created
**Field Name:** `productCreatedDate`
**Type:** dimension |
| Product Last Modified Date
| Date the product was last edited
**Field Name:** `productLastModifiedDate`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Salesforce campaigns.
### Account
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
| Account Count
| Count of accounts (1 per row when joined with dimensions; total when alone)
**Field Name:** `accountCount`
**Type:** metric |
| Account Annual Revenue
| Annual revenue reported on the account
**Field Name:** `accountAnnualRevenue`
**Type:** metric |
| Account Number Of Employees
| Employee count reported on the account
**Field Name:** `accountNumberOfEmployees`
**Type:** metric |
### Contact
| | |
| ------------------------ | --------------------------------------------------------------------------------- |
| Contact Count
| Count of contacts
**Field Name:** `contactCount`
**Type:** metric |
### Lead
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------ |
| Lead Count
| Count of leads
**Field Name:** `leadCount`
**Type:** metric |
| Lead Annual Revenue
| Annual revenue reported on the lead
**Field Name:** `leadAnnualRevenue`
**Type:** metric |
| Lead Number Of Employees
| Employee count reported on the lead
**Field Name:** `leadNumberOfEmployees`
**Type:** metric |
### Opportunity
| | |
| ------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Opportunity Count
| Count of opportunities
**Field Name:** `opportunityCount`
**Type:** metric |
| Opportunity Amount
| Deal size in currency units
**Field Name:** `opportunityAmount`
**Type:** metric |
| Opportunity Expected Revenue
| Amount × Probability — Salesforce-weighted forecast
**Field Name:** `opportunityExpectedRevenue`
**Type:** metric |
| Opportunity Probability
| Stage probability of close (0–100)
**Field Name:** `opportunityProbability`
**Type:** metric |
| Opportunity Total Opportunity Quantity
| Total quantity across all line items
**Field Name:** `opportunityTotalOpportunityQuantity`
**Type:** metric |
### Case
| | |
| --------------------- | --------------------------------------------------------------------------- |
| Case Count
| Count of cases
**Field Name:** `caseCount`
**Type:** metric |
### Campaign
| | |
| --------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Campaign Count
| Count of campaigns
**Field Name:** `campaignCount`
**Type:** metric |
| Campaign Budgeted Cost
| Planned budget for the campaign
**Field Name:** `campaignBudgetedCost`
**Type:** metric |
| Campaign Actual Cost
| Actual cost incurred for the campaign
**Field Name:** `campaignActualCost`
**Type:** metric |
| Campaign Expected Revenue
| Forecasted revenue from the campaign
**Field Name:** `campaignExpectedRevenue`
**Type:** metric |
| Campaign Expected Response
| Expected response count
**Field Name:** `campaignExpectedResponse`
**Type:** metric |
| Campaign Number Sent
| Number of items sent (e.g., emails)
**Field Name:** `campaignNumberSent`
**Type:** metric |
| Campaign Number Of Leads
| Rolled-up count of leads associated with the campaign
**Field Name:** `campaignNumberOfLeads`
**Type:** metric |
| Campaign Number Of Contacts
| Rolled-up count of contacts associated with the campaign
**Field Name:** `campaignNumberOfContacts`
**Type:** metric |
| Campaign Number Of Converted Leads
| Rolled-up count of converted leads
**Field Name:** `campaignNumberOfConvertedLeads`
**Type:** metric |
| Campaign Number Of Responses
| Rolled-up count of campaign members who responded
**Field Name:** `campaignNumberOfResponses`
**Type:** metric |
| Campaign Number Of Opportunities
| Rolled-up count of opportunities tied to the campaign
**Field Name:** `campaignNumberOfOpportunities`
**Type:** metric |
| Campaign Number Of Won Opportunities
| Rolled-up count of won opportunities tied to the campaign
**Field Name:** `campaignNumberOfWonOpportunities`
**Type:** metric |
| Campaign Amount All Opportunities
| Rolled-up amount of all opportunities tied to the campaign
**Field Name:** `campaignAmountAllOpportunities`
**Type:** metric |
| Campaign Amount Won Opportunities
| Rolled-up amount of won opportunities tied to the campaign
**Field Name:** `campaignAmountWonOpportunities`
**Type:** metric |
| Campaign Hierarchy Number Sent
| Sum across the campaign hierarchy of items sent
**Field Name:** `campaignHierarchyNumberSent`
**Type:** metric |
| Campaign Hierarchy Number Of Leads
| Sum across the campaign hierarchy of leads
**Field Name:** `campaignHierarchyNumberOfLeads`
**Type:** metric |
| Campaign Hierarchy Number Of Contacts
| Sum across the campaign hierarchy of contacts
**Field Name:** `campaignHierarchyNumberOfContacts`
**Type:** metric |
| Campaign Hierarchy Number Of Converted Leads
| Sum across the campaign hierarchy of converted leads
**Field Name:** `campaignHierarchyNumberOfConvertedLeads`
**Type:** metric |
| Campaign Hierarchy Number Of Responses
| Sum across the campaign hierarchy of responses
**Field Name:** `campaignHierarchyNumberOfResponses`
**Type:** metric |
| Campaign Hierarchy Number Of Opportunities
| Sum across the campaign hierarchy of opportunities
**Field Name:** `campaignHierarchyNumberOfOpportunities`
**Type:** metric |
| Campaign Hierarchy Number Of Won Opportunities
| Sum across the campaign hierarchy of won opportunities
**Field Name:** `campaignHierarchyNumberOfWonOpportunities`
**Type:** metric |
| Campaign Hierarchy Amount All Opportunities
| Sum across the campaign hierarchy of all opportunity amount
**Field Name:** `campaignHierarchyAmountAllOpportunities`
**Type:** metric |
| Campaign Hierarchy Amount Won Opportunities
| Sum across the campaign hierarchy of won opportunity amount
**Field Name:** `campaignHierarchyAmountWonOpportunities`
**Type:** metric |
### Task
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| Task Count
| Count of tasks
**Field Name:** `taskCount`
**Type:** metric |
| Task Call Duration In Seconds
| Call duration on the task (in seconds)
**Field Name:** `taskCallDurationInSeconds`
**Type:** metric |
### Event
| | |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------- |
| Event Count
| Count of events
**Field Name:** `eventCount`
**Type:** metric |
| Event Duration In Minutes
| Duration of the event in minutes
**Field Name:** `eventDurationInMinutes`
**Type:** metric |
### User
| | |
| --------------------- | --------------------------------------------------------------------------- |
| User Count
| Count of users
**Field Name:** `userCount`
**Type:** metric |
### Opportunity Line Item
| | |
| -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| Opportunity Line Item Count
| Count of line items
**Field Name:** `opportunityLineItemCount`
**Type:** metric |
| Opportunity Line Item Quantity
| Quantity ordered on the line item
**Field Name:** `opportunityLineItemQuantity`
**Type:** metric |
| Opportunity Line Item Unit Price
| Per-unit price on the line item
**Field Name:** `opportunityLineItemUnitPrice`
**Type:** metric |
| Opportunity Line Item List Price
| List price from the pricebook for the line item
**Field Name:** `opportunityLineItemListPrice`
**Type:** metric |
| Opportunity Line Item Discount
| Discount applied to the line item (percent)
**Field Name:** `opportunityLineItemDiscount`
**Type:** metric |
| Opportunity Line Item Total Price
| Total price (Quantity × UnitPrice) for the line item
**Field Name:** `opportunityLineItemTotalPrice`
**Type:** metric |
### Product
| | |
| ------------------------ | ------------------------------------------------------------------------------------------------ |
| Product Count
| Count of products in the catalog
**Field Name:** `productCount`
**Type:** metric |
***
## Related
Browse all platforms
HubSpot metrics & dimensions
Klaviyo metrics & dimensions
Mailchimp metrics & dimensions
# Shopify Metrics & Dimensions
Source: https://support.detrics.io/data-source/shopify/fields
Complete reference for Shopify store dimensions and metrics
**Last updated:** August 6, 2026
281 dimensions
145 metrics
This reference covers all available dimensions and metrics for Shopify data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Shopify data.
### Store
| | |
| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Store ID
| A globally-unique ID for the shop.
**Field Name:** `storeId`
**Type:** dimension |
| Store Domain
| The domain name of the shop.
**Field Name:** `storeDomain`
**Type:** dimension |
| Store Name
| The name of the shop.
**Field Name:** `storeName`
**Type:** dimension |
| Store Address 1
| The first line of the address. Typically the street address or PO Box number.
**Field Name:** `storeAddress1`
**Type:** dimension |
| Store Address 2
| The second line of the address. Typically the number of the apartment, suite, or unit.
**Field Name:** `storeAddress2`
**Type:** dimension |
| Store Checkout API Supported
| Specifies whether the shop supports checkouts via Checkout API.
**Field Name:** `storeCheckoutApiSupported`
**Type:** dimension |
| Store City
| The name of the city, district, village, or town.
**Field Name:** `storeCity`
**Type:** dimension |
| Store Country
| The shop's country.
**Field Name:** `storeCountry`
**Type:** dimension |
| Store Country Code
| The two-letter code for the country of the address.
**Field Name:** `storeCountryCode`
**Type:** dimension |
| Store Created At
| The date and time when the shop was created.
**Field Name:** `storeCreatedAt`
**Type:** dimension |
| Store Contact Email
| The public-facing contact email address for the shop. Customers will use this email to communicate with the shop owner.
**Field Name:** `storeContactEmail`
**Type:** dimension |
| Store Currency Code
| The three-letter code for the shop's default currency.
**Field Name:** `storeCurrencyCode`
**Type:** dimension |
| Store Enabled Presentment Currencies
| The presentment currencies enabled for the shop.
**Field Name:** `storeEnabledPresentmentCurrencies`
**Type:** dimension |
| Store Email
| The shop owner's email address. Shopify will use this email address to communicate with the shop owner.
**Field Name:** `storeEmail`
**Type:** dimension |
| Store IANA Timezone
| The shop's time zone as defined by the IANA
**Field Name:** `storeIanaTimezone`
**Type:** dimension |
| Store Latitude
| The latitude coordinate of the address.
**Field Name:** `storeLatitude`
**Type:** dimension |
| Store Longitude
| The longitude coordinate of the address.
**Field Name:** `storeLongitude`
**Type:** dimension |
| Store Money Format
| A string representing the way currency is formatted when the currency isn't specified.
**Field Name:** `storeMoneyFormat`
**Type:** dimension |
| Store Money With Currency Format
| How currencies are displayed on your store.
**Field Name:** `storeMoneyWithCurrencyFormat`
**Type:** dimension |
| Store Myshopify Domain
| The shop's .myshopify.com domain.
**Field Name:** `storeMyshopifyDomain`
**Type:** dimension |
| Store Password Enabled
| Whether the password protection page is enabled on the shop's online store.
**Field Name:** `storePasswordEnabled`
**Type:** dimension |
| Store Phone
| A phone number associated with the address.
**Field Name:** `storePhone`
**Type:** dimension |
| Store Shop Locales
| The shop's primary locale.
**Field Name:** `storeShopLocales`
**Type:** dimension |
| Store Province
| The region of the address, such as the province, state, or district.
**Field Name:** `storeProvince`
**Type:** dimension |
| Store Province Code
| The two- or three-letter code for the shop's province or state.
**Field Name:** `storeProvinceCode`
**Type:** dimension |
| Store Setup Required
| Whether the shop has any outstanding setup steps.
**Field Name:** `storeSetupRequired`
**Type:** dimension |
| Store Shop Owner
| The name of the shop owner.
**Field Name:** `storeShopOwner`
**Type:** dimension |
| Store Taxes Included
| Whether applicable taxes are included in product prices.
**Field Name:** `storeTaxesIncluded`
**Type:** dimension |
| Store Tax Shipping
| Whether taxes are charged for shipping.
**Field Name:** `storeTaxShipping`
**Type:** dimension |
| Store Timezone
| The name of the timezone the shop is in.
**Field Name:** `storeTimezoneAbbreviation`
**Type:** dimension |
| Store Transactional SMS Disabled
| Whether transactional SMS sent by Shopify are disabled on the shop's online store.
**Field Name:** `storeTransactionalSmsDisabled`
**Type:** dimension |
| Store Updated At
| The date and time when the shop was last updated.
**Field Name:** `storeUpdatedAt`
**Type:** dimension |
| Store Weight Unit
| The default unit of weight measurement for the shop.
**Field Name:** `storeWeightUnit`
**Type:** dimension |
| Store Zip
| The shop's zip or postal code.
**Field Name:** `storeZip`
**Type:** dimension |
### Order
| | |
| --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Order ID
| A globally-unique ID
**Field Name:** `orderId`
**Type:** dimension |
| Order Name
| The unique identifier for the order that appears on the order page in the Shopify admin and the Order status page. For example, '#1001', 'EN1001', or '1001-A'. This value isn't unique across multiple stores
**Field Name:** `orderName`
**Type:** dimension |
| Order Note
| The contents of the note associated with the order
**Field Name:** `orderNote`
**Type:** dimension |
| Order Tags
| A comma separated list of tags associated with the order. Updating tags overwrites any existing tags that were previously added to the order
**Field Name:** `orderTags`
**Type:** dimension |
| Order Created At
| Date and time when the order was created in Shopify. This field is used to filter Orders based on the timeframe selected in your request.
**Field Name:** `orderCreatedAt`
**Type:** dimension |
| Order Closed At
| The date and time when the order was closed. Returns null if the order isn't closed.
**Field Name:** `orderClosedAt`
**Type:** dimension |
| Order Cancelled At
| The date and time when the order was canceled. Returns null if the order wasn't canceled.
**Field Name:** `orderCancelledAt`
**Type:** dimension |
| Order Currency Code
| The shop currency when the order was placed
**Field Name:** `orderCurrencyCode`
**Type:** dimension |
| Order Email
| The email address associated with the customer
**Field Name:** `orderEmail`
**Type:** dimension |
| Order Fully Paid
| Whether the order has been paid in full
**Field Name:** `orderFullyPaid`
**Type:** dimension |
| Order Discount Codes
| The discount codes used for the order.
**Field Name:** `orderDiscountCodes`
**Type:** dimension |
| Order Fulfillment Status
|
**Field Name:** `orderFulfillmentStatus`
**Type:** dimension |
| Order Payment Status
| The display financial status of the order.
**Field Name:** `orderDisplayFinancialStatus`
**Type:** dimension |
| Order Fulfillment Date
|
**Field Name:** `orderFulfillmentDate`
**Type:** dimension |
| Order Phone
| The phone number associated with the customer
**Field Name:** `orderPhone`
**Type:** dimension |
| Order Closed
| Whether the order is closed
**Field Name:** `orderClosed`
**Type:** dimension |
| Order Cancel Reason
| The reason provided when the order was canceled. Returns null if the order wasn't canceled
**Field Name:** `orderCancelReason`
**Type:** dimension |
| Order PO Number
| The purchase order number associated with the order. Used for B2B orders.
**Field Name:** `orderPoNumber`
**Type:** dimension |
| Order Source Identifier
| A unique identifier for the order that comes from an external source (e.g., from a third-party checkout).
**Field Name:** `orderSourceIdentifier`
**Type:** dimension |
| Order Confirmation Number
| The confirmation number displayed to the customer after completing checkout. Starts with a letter.
**Field Name:** `orderConfirmationNumber`
**Type:** dimension |
| Order Processed At
| The date and time when the order was processed. This can differ from created\_at for draft orders or pre-orders.
**Field Name:** `orderProcessedAt`
**Type:** dimension |
| Order Source Name
| The source of the order, such as "web", "shopify\_draft\_order", "pos", or a third-party app name.
**Field Name:** `orderSourceName`
**Type:** dimension |
| Order Is Test
| Whether the order is a test order. Test orders are created using the Shopify Bogus Gateway.
**Field Name:** `orderTest`
**Type:** dimension |
| Order Risk Level
| The fraud risk level of the order: HIGH, MEDIUM, LOW, NONE, or PENDING.
**Field Name:** `orderRiskLevel`
**Type:** dimension |
| Order Fraud Protection Level
| The fraud protection level for the order: FULLY\_PROTECTED, PARTIALLY\_PROTECTED, NOT\_PROTECTED, or PENDING.
**Field Name:** `orderFraudProtectionLevel`
**Type:** dimension |
| Order Payment Gateway
| The name of the payment gateway used to process the order (e.g., "shopify\_payments", "paypal").
**Field Name:** `orderPaymentGateway`
**Type:** dimension |
| Order Location ID
| The ID of the retail location where the order was placed (for POS orders). Returns empty for online orders.
**Field Name:** `orderLocationId`
**Type:** dimension |
| Order Location Name
| The name of the retail location where the order was placed (for POS orders). Returns empty for online orders.
**Field Name:** `orderLocationName`
**Type:** dimension |
| Order Client IP
| The IP address of the API client that created the order
**Field Name:** `orderClientIp`
**Type:** dimension |
| Order Presentment Money Currency
| The presentment money currency for the order
**Field Name:** `orderTotalPriceSetPresentmentMoneyCurrency`
**Type:** dimension |
| Order Updated At
| The date and time when the order was modified last.
**Field Name:** `orderUpdatedAt`
**Type:** dimension |
| Order Discount Code
| The discount code used for the order.
**Field Name:** `orderDiscountCode`
**Type:** dimension |
| Order Sales Channel
| Name of the channel that this sub-channel belongs to. Identifies the parent sales channel.
**Field Name:** `orderSalesChannelName`
**Type:** dimension |
| Order Sales Sub Channel
| Name of the sub-channel (e.g., "Online Store", "Instagram Shopping", "TikTok Live"). More specific than the parent channel.
**Field Name:** `orderSubChannelName`
**Type:** dimension |
| Order Sales Channel Handle
| Unique string identifier used as a public identifier for the channel definition.
**Field Name:** `orderChannelHandle`
**Type:** dimension |
| Order Sales Channel Is Marketplace
| Whether this channel definition represents a marketplace (true/false). Marketplaces are third-party platforms like Amazon, eBay, etc.
**Field Name:** `orderChannelIsMarketplace`
**Type:** dimension |
| Order Shipping Address 1
| The shipping address line 1 of the customer
**Field Name:** `orderShippingAddress1`
**Type:** dimension |
| Order Shipping Address 2
| The shipping address line 2 of the customer
**Field Name:** `orderShippingAddress2`
**Type:** dimension |
| Order Shipping Country
| The shipping address country of the customer
**Field Name:** `orderShippingCountry`
**Type:** dimension |
| Order Shipping City
| The shipping address city of the customer
**Field Name:** `orderShippingCity`
**Type:** dimension |
| Order Shipping Post Code
| The shipping address postal code of the customer
**Field Name:** `orderShippingPostCode`
**Type:** dimension |
| Order Shipping Phone
| The shipping address phone number of the customer
**Field Name:** `orderShippingPhone`
**Type:** dimension |
| Order Shipping Company
| The shipping address company name of the customer
**Field Name:** `orderShippingCompany`
**Type:** dimension |
| Order Shipping Method
| The title of the shipping method selected for the order (e.g., "Standard Shipping", "Express Delivery").
**Field Name:** `orderShippingLineTitle`
**Type:** dimension |
| Order Shipping Method Code
| A unique identifier code for the shipping rate selected for the order.
**Field Name:** `orderShippingLineCode`
**Type:** dimension |
| Order Billing Address 1
| The billing address line 1 of the customer
**Field Name:** `orderBillingAddress1`
**Type:** dimension |
| Order Billing Address 2
| The billing address line 2 of the customer
**Field Name:** `orderBillingAddress2`
**Type:** dimension |
| Order Billing Country
| The billing address country
**Field Name:** `orderBillingCountry`
**Type:** dimension |
| Order Billing City
| The billing address city
**Field Name:** `orderBillingCity`
**Type:** dimension |
| Order Billing Phone
| The billing address phone number
**Field Name:** `orderBillingPhone`
**Type:** dimension |
### Order Customer
| | |
| ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order Customer ID
| A globally-unique ID for the customer.
**Field Name:** `orderCustomerId`
**Type:** dimension |
| Order Customer Name
| The full name of the customer
**Field Name:** `orderCustomerName`
**Type:** dimension |
| Order Customer Email
| The customer's email address.
**Field Name:** `orderCustomerEmail`
**Type:** dimension |
| Order Customer Phone
| The customer's phone number.
**Field Name:** `orderCustomerPhone`
**Type:** dimension |
| Order Customer Image Url
| The image url associated with the customer
**Field Name:** `orderCustomerImage`
**Type:** dimension |
| Order Customer Locale
| The customer's locale
**Field Name:** `orderCustomerLocale`
**Type:** dimension |
| Order Customer Note
| A note about the customer.
**Field Name:** `orderCustomerNote`
**Type:** dimension |
| Order Customer Predicted Spend Tier
| The predicted spend tier of a customer with a shop.HIGH:The customer's spending is predicted to be in the top spending range for the shop in the following year. LOW: The customer's spending is predicted to be zero, or in the lowest spending range for the shop in the following year. MEDIUM : The customer's spending is predicted to be in the normal spending range for the shop in the following year.
**Field Name:** `orderCustomerPredictedSpendTier`
**Type:** dimension |
| Order Customer Tags
| A comma separated list of tags that have been added to the customer.
**Field Name:** `orderCustomerTags`
**Type:** dimension |
| Order Customer Unsubscribe URL
| The URL to unsubscribe the customer from the mailing list.
**Field Name:** `orderCustomerUnsubscribeUrl`
**Type:** dimension |
| Order Customer Tax Exempt
| Whether the customer is exempt from being charged taxes on their orders.
**Field Name:** `orderCustomerTaxExempt`
**Type:** dimension |
| Order Customer Created At
| Date and time when the customer was created in Shopify.
**Field Name:** `orderCustomerCreatedAt`
**Type:** dimension |
| Order Customer Country
| Country of the customer
**Field Name:** `orderCustomerCountry`
**Type:** dimension |
| Order Customer City
| City of the customer
**Field Name:** `orderCustomerCity`
**Type:** dimension |
| Order Customer Country Code
| Country Code of the customer
**Field Name:** `orderCustomerCountryCode`
**Type:** dimension |
| Order Customer Is Returning
| True if the customer has placed more than one order.
**Field Name:** `orderCustomerIsReturning`
**Type:** dimension |
### Traffic Source First Visit
| | |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Customer Journey First Visit Source
| Identifies a search engine, a newsletter name, or other source
**Field Name:** `customerJourneyFirstVisitSource`
**Type:** dimension |
| Customer Journey First Visit Page URL
| URL of the first page the customer landed on for their first session
**Field Name:** `customerJourneyFirstVisitLandingPageUrl`
**Type:** dimension |
| Customer Journey First Visit Occurred At
| The date and time when the customer's first session occurred in the shop.
**Field Name:** `customerJourneyFirstVisitOccurredAt`
**Type:** dimension |
| First Visit UTM Source
| The UTM source parameter from the first visit
**Field Name:** `firstVisitUTMSource`
**Type:** dimension |
| First Visit UTM Medium
| The UTM medium parameter from the first visit
**Field Name:** `firstVisitUTMMedium`
**Type:** dimension |
| First Visit UTM Campaign
| The UTM campaign parameter from the first visit
**Field Name:** `firstVisitUTMCampaign`
**Type:** dimension |
| First Visit UTM Term
| The UTM term parameter from the first visit
**Field Name:** `firstVisitUTMTerm`
**Type:** dimension |
| First Visit UTM Content
| The UTM content parameter from the first visit
**Field Name:** `firstVisitUTMContent`
**Type:** dimension |
### Traffic Source Last Visit
| | |
| -------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Customer Journey Last Visit Occurred At
| The date and time when the customer's last session occurred before making the order.
**Field Name:** `customerJourneyLastVisitOccurredAt`
**Type:** dimension |
| Customer Journey Last Visit Source
| Source from which the customer last visited the store before making the order
**Field Name:** `customerJourneyLastVisitSource`
**Type:** dimension |
| Customer Journey Last Visit Page URL
| URL of the first page the customer landed on for their last session before making the order
**Field Name:** `customerJourneyLastVisitLandingPageUrl`
**Type:** dimension |
| Last Visit UTM Source
| The UTM source parameter from the last visit
**Field Name:** `lastVisitUTMSource`
**Type:** dimension |
| Last Visit UTM Medium
| The UTM medium parameter from the last visit
**Field Name:** `lastVisitUTMMedium`
**Type:** dimension |
| Last Visit UTM Campaign
| The UTM campain parameter from the last visit
**Field Name:** `lastVisitUTMCampaign`
**Type:** dimension |
| Last Visit UTM Term
| The UTM term parameter from the last visit
**Field Name:** `lastVisitUTMTerm`
**Type:** dimension |
| Last Visit UTM Content
| The UTM content parameter from the last visit
**Field Name:** `lastVisitUTMContent`
**Type:** dimension |
### Line Item
| | |
| ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Line Item ID
| A globally-unique ID of the Line Item.
**Field Name:** `lineItemId`
**Type:** dimension |
| Line Item Product ID
| A globally-unique ID of the Product.
**Field Name:** `lineItemProductId`
**Type:** dimension |
| Line Item Type
| The product type that merchants define
**Field Name:** `lineItemProductType`
**Type:** dimension |
| Line Item SKU
| The variant SKU number.
**Field Name:** `lineItemSku`
**Type:** dimension |
| Line Item Is Gift Card
| Whether the product is a gift card
**Field Name:** `lineItemProductIsGiftCard`
**Type:** dimension |
| Line Item Title
| The title of the product at time of order creation
**Field Name:** `lineItemTitle`
**Type:** dimension |
| Line Item Image
| Image of the Line Item at the time of order creation.
**Field Name:** `lineItemImage`
**Type:** dimension |
| Line Item Vendor
| The name of the vendor who made the variant
**Field Name:** `lineItemVendor`
**Type:** dimension |
| Line Item Description
| The description of the product, with HTML tags removed
**Field Name:** `lineItemProductDescription`
**Type:** dimension |
| Line Item Restockable
| Whether the Line Item can be restocked
**Field Name:** `lineItemRestockable`
**Type:** dimension |
| Line Item Product Title
| The name for the product that displays to customers
**Field Name:** `lineItemProductTitle`
**Type:** dimension |
| Line Item Requires Shipping
| Whether physical shipping is required for the variant
**Field Name:** `lineItemRequiresShipping`
**Type:** dimension |
| Line Item Taxable
| Whether the variant is taxable
**Field Name:** `lineItemTaxable`
**Type:** dimension |
| Line Item Collections
| Names of the collections associated with the product
**Field Name:** `lineItemProductCollectionsTitle`
**Type:** dimension |
| Line Item Tags
| A comma-separated list of searchable keywords that are associated with the product.
**Field Name:** `lineItemProductTags`
**Type:** dimension |
| Line Item Handle
| A unique, human-readable string of the product's title
**Field Name:** `lineItemProductHandle`
**Type:** dimension |
| Line Item Online Store URL
| The product's URL on the online store
**Field Name:** `lineItemProductOnlineStoreUrl`
**Type:** dimension |
| Line Item Online Store Preview URL
| The preview URL for the online store
**Field Name:** `lineItemProductOnlineStorePreviewUrl`
**Type:** dimension |
| Line Item Status
| The product status, which controls visibility across all sales channels
**Field Name:** `lineItemProductStatus`
**Type:** dimension |
| Line Item Has Only Default Variant
| Whether the product has only a single variant with the default option and value
**Field Name:** `lineItemProductHasOnlyDefaultVariant`
**Type:** dimension |
| Line Item Has Out Of Stock Variants
| Whether the product has variants that are out of stock
**Field Name:** `lineItemProductHasOutOfStockVariants`
**Type:** dimension |
| Line Item Requires Selling Plan
| Whether the product can only be purchased with a selling plan
**Field Name:** `lineItemProductRequiresSellingPlan`
**Type:** dimension |
| Line Item Presentment Currency
| The presentment currency code of the Line Item.
**Field Name:** `lineItemOriginalUnitPriceSetPresentmentMoneyCurrency`
**Type:** dimension |
| Line Item Created At
| The date and time when the product was created.
**Field Name:** `lineItemProductCreatedAt`
**Type:** dimension |
### Line Item Variant
| | |
| ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Line Item Variant ID
| A globally-unique ID of the variant
**Field Name:** `lineItemVariantId`
**Type:** dimension |
| Line Item Variant SKU
| A case-sensitive identifier for the product variant in the shop
**Field Name:** `lineItemVariantSku`
**Type:** dimension |
| Line Item Variant Name
| Display name of the variant, based on product's title + variant's title
**Field Name:** `lineItemVariantDisplayName`
**Type:** dimension |
| Line Item Variant Title
| The title of the variant at time of order creation
**Field Name:** `lineItemVariantTitle`
**Type:** dimension |
| Line Item Variant Image
| The featured image for the variant
**Field Name:** `lineItemVariantImage`
**Type:** dimension |
| Line Item Variant Barcode
| The value of the barcode associated with the product variant
**Field Name:** `lineItemVariantBarcode`
**Type:** dimension |
| Line Item Variant Available For Sale
| Whether the product variant is available for sale
**Field Name:** `lineItemVariantAvailableForSale`
**Type:** dimension |
| Line Item Variant Policy
| Whether customers are allowed to place an order for the product variant when it's out of stock
**Field Name:** `lineItemVariantInventoryPolicy`
**Type:** dimension |
| Line Item Variant Legacy Resource ID
| The ID of the corresponding resource in the REST Admin API
**Field Name:** `lineItemVariantLegacyResourceId`
**Type:** dimension |
| Line Item Variant Position
| The order of the product variant in the list of product variants
**Field Name:** `lineItemVariantPosition`
**Type:** dimension |
| Line Item Variant Requires Components
| Whether a product variant requires components
**Field Name:** `lineItemVariantRequiresComponents`
**Type:** dimension |
| Line Item Variant Sellable Online Quantity
| The total sellable quantity of the variant for online channels
**Field Name:** `lineItemVariantSellableOnlineQuantity`
**Type:** dimension |
| Line Item Variant Taxable
| Whether a tax is charged when the product variant is sold
**Field Name:** `lineItemVariantTaxable`
**Type:** dimension |
| Line Item Variant Tax Code
| The tax code for the product variant
**Field Name:** `lineItemVariantTaxCode`
**Type:** dimension |
| Line Item Variant Updated At
| The date and time when the product variant was last modified
**Field Name:** `lineItemVariantUpdatedAt`
**Type:** dimension |
| Line Item Variant Created At
| The date and time when the variant was created
**Field Name:** `lineItemVariantCreatedAt`
**Type:** dimension |
### Product
| | |
| ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Product ID
| A globally-unique ID.
**Field Name:** `productId`
**Type:** dimension |
| Product Variant SKU
| The SKU (Stock Keeping Unit) of the product variant
**Field Name:** `productVariantSku`
**Type:** dimension |
| Product Variant ID
| The unique identifier of the product variant
**Field Name:** `productVariantId`
**Type:** dimension |
| Product Title
| The name for the product that displays to customers
**Field Name:** `productTitle`
**Type:** dimension |
| Product Variant Title
| The title of the product variant
**Field Name:** `productVariantTitle`
**Type:** dimension |
| Product Tags
| A comma-separated list of searchable keywords that are associated with the product.
**Field Name:** `productTags`
**Type:** dimension |
| Product Description
| A single-line description of the product, with HTML tags removed
**Field Name:** `productDescription`
**Type:** dimension |
| Product Vendor
| The name of the product's vendor
**Field Name:** `productVendor`
**Type:** dimension |
| Product Type
| The product type that merchants define
**Field Name:** `productType`
**Type:** dimension |
| Product Created At
| The date and time when the product was created.
**Field Name:** `productCreatedAt`
**Type:** dimension |
| Product Category Name
| The category of a product from Shopify's Standard Product Taxonomy
**Field Name:** `productCategoryFullName`
**Type:** dimension |
| Product Is Gift Card
| Whether the product is a gift card
**Field Name:** `productIsGiftCard`
**Type:** dimension |
| Product Online Store URL
| The product's URL on the online store. If null, then the product isn't published to the online store sales channel
**Field Name:** `productOnlineStoreUrl`
**Type:** dimension |
| Product Published At
| The date and time when the product was published to the online store.
**Field Name:** `productPublishedAt`
**Type:** dimension |
| Product SEO Description
| The SEO description that is associated with the product
**Field Name:** `productSeoDescription`
**Type:** dimension |
| Product SEO Title
| The SEO title that is associated with the product
**Field Name:** `productSeoTitle`
**Type:** dimension |
| Product Status
| The product status, which controls visibility across all sales channels
**Field Name:** `productStatus`
**Type:** dimension |
| Product Updated At
| The date and time when the product was last modified.
**Field Name:** `productUpdatedAt`
**Type:** dimension |
| Product Collections
| Names of the collections associated with the product
**Field Name:** `productCollectionsTitle`
**Type:** dimension |
### Line Item Refund
| | |
| ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------- |
| Line Item Refund Restocked
| Whether the refunded Line Item was restocked
**Field Name:** `lineItemRefundRestocked`
**Type:** dimension |
| Line Item Refund Location
| The restock location
**Field Name:** `lineItemRefundLocation`
**Type:** dimension |
| Line Item Refund Restocked Type
| The type of restock for the refunded Line Item
**Field Name:** `lineItemRefundRestockedType`
**Type:** dimension |
### Refund
| | |
| ----------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Refund ID
| A globally-unique ID
**Field Name:** `refundId`
**Type:** dimension |
| Refund Created At
| The date and time when the refund was created.
**Field Name:** `refundCreatedAt`
**Type:** dimension |
| Refund Note
| The optional note associated with the refund
**Field Name:** `refundNote`
**Type:** dimension |
| Refund Order Adjustment Reason
| The reason for the order adjustment
**Field Name:** `refundOrderAdjustmentReason`
**Type:** dimension |
### Attribution
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| UTM Campaign
| UTM Campaign parameter from the order
**Field Name:** `salesUtmCampaign`
**Type:** dimension |
| UTM Source
| UTM Source parameter from the order
**Field Name:** `salesUtmSource`
**Type:** dimension |
| UTM Medium
| UTM Medium parameter from the order
**Field Name:** `salesUtmMedium`
**Type:** dimension |
| UTM Content
| UTM Content parameter from the order
**Field Name:** `salesUtmContent`
**Type:** dimension |
| UTM Term
| UTM Term parameter from the order
**Field Name:** `salesUtmTerm`
**Type:** dimension |
| Order Referrer Domain
| The referring domain for the order
**Field Name:** `orderReferrerDomain`
**Type:** dimension |
| Order Referrer Source
| The referrer source type for the order
**Field Name:** `orderReferrerSource`
**Type:** dimension |
| Order Referrer Name
| The referrer name for the order
**Field Name:** `orderReferrerName`
**Type:** dimension |
| Order Landing Page Path
| The landing page path for the order
**Field Name:** `orderLandingPagePath`
**Type:** dimension |
| First Order Referring Channel
| The referring channel of the first order
**Field Name:** `firstOrderReferringChannel`
**Type:** dimension |
| First Order Sales Channel
| The sales channel of the first order
**Field Name:** `firstOrderSalesChannel`
**Type:** dimension |
| First Order Traffic Type
| The traffic type of the first order
**Field Name:** `firstOrderTrafficType`
**Type:** dimension |
| Marketing Event Type
| The type of marketing event that drove the order
**Field Name:** `orderMarketingEventType`
**Type:** dimension |
### Channel
| | |
| ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| Sales Channel
| The sales channel where the sale occurred
**Field Name:** `salesChannel`
**Type:** dimension |
| Order Sales Channel
| The order-level sales channel
**Field Name:** `orderSalesChannel`
**Type:** dimension |
| Discount Code
| The discount code applied to the order
**Field Name:** `discountCode`
**Type:** dimension |
| Discount Name
| The name of the discount applied
**Field Name:** `discountName`
**Type:** dimension |
| Discount Type
| The type of discount (percentage, fixed, etc.)
**Field Name:** `discountType`
**Type:** dimension |
| Discount Class
| The class of discount applied
**Field Name:** `discountClass`
**Type:** dimension |
| Market
| The market where the sale occurred
**Field Name:** `market`
**Type:** dimension |
| Subscription or One-Time
| Whether the order is subscription or one-time purchase
**Field Name:** `subscriptionOrOneTime`
**Type:** dimension |
### Product (Analytics)
| | |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------- |
| Product Title
| The title of the product sold
**Field Name:** `salesProductTitle`
**Type:** dimension |
| Product Type
| The type/category of the product sold
**Field Name:** `salesProductType`
**Type:** dimension |
| Product Vendor
| The vendor of the product sold
**Field Name:** `salesProductVendor`
**Type:** dimension |
| Product Variant Title
| The variant title of the product sold
**Field Name:** `salesProductVariantTitle`
**Type:** dimension |
| Product Variant SKU
| The SKU of the product variant sold
**Field Name:** `salesProductVariantSku`
**Type:** dimension |
| Product Collection
| The collection the product belongs to
**Field Name:** `salesProductCollection`
**Type:** dimension |
| Product Tag
| Tags associated with the product
**Field Name:** `salesProductTag`
**Type:** dimension |
| Product ID
| The unique identifier of the product
**Field Name:** `salesProductId`
**Type:** dimension |
| Product Variant ID
| The unique identifier of the product variant
**Field Name:** `salesProductVariantId`
**Type:** dimension |
| Product Variant ABC Grade
| ABC inventory grade of the product variant
**Field Name:** `salesProductVariantAbcGrade`
**Type:** dimension |
| Bundle Title
| The title of the bundle
**Field Name:** `salesBundleTitle`
**Type:** dimension |
### Billing Geography
| | |
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------- |
| Billing Country
| The billing country of the customer
**Field Name:** `salesBillingCountry`
**Type:** dimension |
| Billing Region
| The billing region/state of the customer
**Field Name:** `salesBillingRegion`
**Type:** dimension |
| Billing City
| The billing city of the customer
**Field Name:** `billingCity`
**Type:** dimension |
| Billing Postal Code
| The billing postal code of the customer
**Field Name:** `billingPostalCode`
**Type:** dimension |
### Shipping Geography
| | |
| --------------------------- | ---------------------------------------------------------------------------------------------------------- |
| Shipping Country
| The shipping destination country
**Field Name:** `shippingCountry`
**Type:** dimension |
| Shipping Region
| The shipping destination region/state
**Field Name:** `shippingRegion`
**Type:** dimension |
| Shipping City
| The shipping destination city
**Field Name:** `shippingCity`
**Type:** dimension |
| Shipping Carrier
| The shipping carrier used
**Field Name:** `shippingCarrier`
**Type:** dimension |
### Customer (Analytics)
| | |
| --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Customer Country
| The country of the customer
**Field Name:** `customerCountry`
**Type:** dimension |
| Customer Region
| The region/state of the customer
**Field Name:** `customerRegion`
**Type:** dimension |
| Customer City
| The city of the customer
**Field Name:** `customerCity`
**Type:** dimension |
| Customer Email Domain
| The email domain of the customer (useful for B2B identification)
**Field Name:** `customerEmailDomain`
**Type:** dimension |
| Customer Cohort Month
| The month when the customer made their first purchase
**Field Name:** `customerCohortMonth`
**Type:** dimension |
| Customer Cohort Week
| The week when the customer made their first purchase
**Field Name:** `customerCohortWeek`
**Type:** dimension |
| Customer Cohort Quarter
| The quarter when the customer made their first purchase
**Field Name:** `customerCohortQuarter`
**Type:** dimension |
| RFM Group
| RFM (Recency, Frequency, Monetary) segmentation group
**Field Name:** `rfmGroup`
**Type:** dimension |
| Predicted Spend Tier
| Predicted spend tier based on customer behavior
**Field Name:** `predictedSpendTier`
**Type:** dimension |
| Customer Tag
| Tags associated with the customer
**Field Name:** `customerTag`
**Type:** dimension |
| Customer Account Status
| The account status of the customer
**Field Name:** `customerAccountStatus`
**Type:** dimension |
| Customer Email Subscription Status
| Email subscription status of the customer
**Field Name:** `customerEmailSubscriptionStatus`
**Type:** dimension |
| Customer SMS Subscription Status
| SMS subscription status of the customer
**Field Name:** `customerSmsSubscriptionStatus`
**Type:** dimension |
| First Order Has Subscription
| Whether the first order included a subscription
**Field Name:** `firstOrderHasSubscription`
**Type:** dimension |
### Order Status
| | |
| ----------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Order Fulfillment Status
| The fulfillment status of the order
**Field Name:** `salesOrderFulfillmentStatus`
**Type:** dimension |
| Order Payment Status
| The payment status of the order
**Field Name:** `salesOrderPaymentStatus`
**Type:** dimension |
| Is Canceled Order
| Whether the order was canceled
**Field Name:** `salesIsCanceledOrder`
**Type:** dimension |
| Order Tag
| Tags associated with the order
**Field Name:** `salesOrderTag`
**Type:** dimension |
| Order Name
| The name/number of the order
**Field Name:** `salesOrderName`
**Type:** dimension |
| Order Risk Level
| The risk level of the order
**Field Name:** `salesOrderRiskLevel`
**Type:** dimension |
| Return Reason
| The reason for the return
**Field Name:** `salesReturnReason`
**Type:** dimension |
| Order or Return
| Whether this is an order or a return
**Field Name:** `salesOrderOrReturn`
**Type:** dimension |
### Payment
| | |
| -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| Payment Method
| The payment method used (e.g., Credit Card, Debit Card, PayPal)
**Field Name:** `paymentMethod`
**Type:** dimension |
| Digital Wallet
| The digital wallet used (Apple Pay, Google Pay, etc.)
**Field Name:** `digitalWallet`
**Type:** dimension |
| Transaction Currency
| The currency of the transaction
**Field Name:** `transactionCurrency`
**Type:** dimension |
| Is Shop Pay Transaction
| Whether Shop Pay was used for the transaction
**Field Name:** `isShopPayTransaction`
**Type:** dimension |
| Is Shop Channel Transaction
| Whether the transaction was through the Shop channel
**Field Name:** `isShopChannelTransaction`
**Type:** dimension |
| Credit Card Tier
| The tier of the credit card used (e.g., Standard, Premium, Rewards)
**Field Name:** `creditCardTier`
**Type:** dimension |
| Credit Card Type
| The type of credit card used (e.g., Visa, Mastercard, Amex)
**Field Name:** `creditCardType`
**Type:** dimension |
| Transaction Status
| The status of the transaction (e.g., Success, Pending, Failed)
**Field Name:** `transactionStatus`
**Type:** dimension |
| Transaction Sale Type
| The type of sale for the transaction (e.g., Sale, Refund)
**Field Name:** `transactionSaleType`
**Type:** dimension |
| Payment Card BIN
| The Bank Identification Number (first 6 digits) of the payment card
**Field Name:** `paymentCardBin`
**Type:** dimension |
| Payment Card Issuer
| The issuing bank or financial institution of the payment card
**Field Name:** `paymentCardIssuer`
**Type:** dimension |
| Payment Card Source
| The source of the payment card (e.g., Credit, Debit, Prepaid)
**Field Name:** `paymentCardSource`
**Type:** dimension |
### Session
| | |
| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Session Country
| The country where the session originated
**Field Name:** `sessionCountry`
**Type:** dimension |
| Session Region
| The region/state where the session originated
**Field Name:** `sessionRegion`
**Type:** dimension |
| Session City
| The city where the session originated
**Field Name:** `sessionCity`
**Type:** dimension |
| Referrer Domain
| The referring domain of the session
**Field Name:** `referrerDomain`
**Type:** dimension |
| Referrer Source
| The referrer source type
**Field Name:** `referrerSource`
**Type:** dimension |
| Referrer Name
| The name of the referrer
**Field Name:** `referrerName`
**Type:** dimension |
| Landing Page Path
| The landing page path of the session
**Field Name:** `landingPagePath`
**Type:** dimension |
| Landing Page Type
| The type of landing page
**Field Name:** `landingPageType`
**Type:** dimension |
| Session Bounced
| Whether the session bounced
**Field Name:** `sessionBounced`
**Type:** dimension |
| Human or Bot Session
| Whether Shopify classified the session as coming from a human or a bot. Use it to group sessions by traffic type, or filter to "human" to exclude bot traffic. Note: Shopify only classifies sessions from October 7, 2025 onward; earlier sessions are not labeled.
**Field Name:** `sessionHumanOrBot`
**Type:** dimension |
### B2B
| | |
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
| Is B2B Order
| Whether this is a B2B order
**Field Name:** `isB2bOrder`
**Type:** dimension |
| Company Name
| The name of the company (B2B)
**Field Name:** `companyName`
**Type:** dimension |
| Company Location Name
| The location name of the company (B2B)
**Field Name:** `companyLocationName`
**Type:** dimension |
### POS / Retail
| | |
| ---------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| POS Location ID
| The unique identifier of the POS location
**Field Name:** `posLocationId`
**Type:** dimension |
| POS Location Name
| The name of the POS location
**Field Name:** `posLocationName`
**Type:** dimension |
| POS Register ID
| The unique identifier of the POS register
**Field Name:** `posRegisterId`
**Type:** dimension |
| Staff ID
| The unique identifier of the staff member
**Field Name:** `staffId`
**Type:** dimension |
| Staff Member Name
| The name of the staff member who processed the transaction
**Field Name:** `staffMemberName`
**Type:** dimension |
### Inventory by Location
| | |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Inventory Location ID
| The unique identifier of the inventory location (warehouse, store, fulfillment center)
**Field Name:** `inventoryLocationId`
**Type:** dimension |
| Inventory Location Name
| The name of the inventory location (warehouse, store, fulfillment center)
**Field Name:** `inventoryLocationName`
**Type:** dimension |
| Inventory Product ID
| The unique identifier of the product
**Field Name:** `inventoryProductId`
**Type:** dimension |
| Inventory Product Title
| The title of the product
**Field Name:** `inventoryProductTitle`
**Type:** dimension |
| Inventory Variant ID
| The unique identifier of the product variant
**Field Name:** `inventoryVariantId`
**Type:** dimension |
| Inventory Variant Title
| The title of the product variant
**Field Name:** `inventoryVariantTitle`
**Type:** dimension |
| Inventory Variant SKU
| The SKU (Stock Keeping Unit) of the product variant
**Field Name:** `inventoryVariantSku`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Shopify campaigns.
### Sales
| | |
| ----------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| Gross Sales
| Total gross sales before any deductions
**Field Name:** `grossSales`
**Type:** metric |
| Net Sales
| Net sales after discounts and returns
**Field Name:** `netSales`
**Type:** metric |
| Total Sales
| Total sales including all fees and taxes
**Field Name:** `totalSales`
**Type:** metric |
| Total Sales (First Time)
| Total sales from first-time customers
**Field Name:** `totalSalesFirstTime`
**Type:** metric |
| Total Sales (Returning)
| Total sales from returning customers
**Field Name:** `totalSalesReturning`
**Type:** metric |
| Average Order Value
| Average order value
**Field Name:** `averageOrderValue`
**Type:** metric |
| Gross Profit
| Gross profit (revenue minus cost of goods sold)
**Field Name:** `grossProfit`
**Type:** metric |
| Gross Margin
| Gross margin percentage
**Field Name:** `grossMargin`
**Type:** metric |
| Cost of Goods Sold
| Total cost of goods sold
**Field Name:** `costOfGoodsSold`
**Type:** metric |
| Total Duties
| Total import duties and taxes
**Field Name:** `totalDuties`
**Type:** metric |
| Additional Fees
| Additional fees charged
**Field Name:** `additionalFees`
**Type:** metric |
| Tips
| Total tips received
**Field Name:** `tips`
**Type:** metric |
| Gift Card Gross Sales
| Gross sales from gift cards
**Field Name:** `giftCardGrossSales`
**Type:** metric |
### Orders (Analytics)
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Total Orders
| Total number of orders
**Field Name:** `totalOrders`
**Type:** metric |
| Orders (First Time)
| Orders from first-time customers
**Field Name:** `ordersFirstTime`
**Type:** metric |
| Orders (Returning)
| Orders from returning customers
**Field Name:** `ordersReturning`
**Type:** metric |
| Orders Delivered
| Orders that have been delivered
**Field Name:** `ordersDelivered`
**Type:** metric |
| Orders Shipped
| Orders that have been shipped
**Field Name:** `ordersShipped`
**Type:** metric |
| Orders Fulfilled
| Orders that have been fulfilled
**Field Name:** `ordersFulfilled`
**Type:** metric |
| Bundles Ordered
| Bundles ordered
**Field Name:** `bundlesOrdered`
**Type:** metric |
| Net Items Sold
| Net items sold (after returns)
**Field Name:** `netItemsSold`
**Type:** metric |
| Quantity Ordered
| Total quantity ordered
**Field Name:** `quantityOrdered`
**Type:** metric |
| Quantity Ordered Per Order
| Average quantity ordered per order
**Field Name:** `quantityOrderedPerOrder`
**Type:** metric |
| Number of Orders Per Customer
| Average number of orders per customer
**Field Name:** `numberOfOrdersPerCustomer`
**Type:** metric |
### Customers (Analytics)
| | |
| --------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
| Customers
| Total number of customers
**Field Name:** `customers`
**Type:** metric |
| New Customers
| New customers acquired
**Field Name:** `newCustomers`
**Type:** metric |
| Returning Customers
| Returning customers
**Field Name:** `returningCustomers`
**Type:** metric |
| Returning Customer Rate
| Percentage of returning customers
**Field Name:** `returningCustomerRate`
**Type:** metric |
| Amount Spent Per Customer
| Average amount spent per customer
**Field Name:** `amountSpentPerCustomer`
**Type:** metric |
| Total Amount Spent
| Total lifetime value spent
**Field Name:** `totalAmountSpent`
**Type:** metric |
| Total Amount Spent Per Order
| Average amount spent per order
**Field Name:** `totalAmountSpentPerOrder`
**Type:** metric |
| Total Number of Orders
| Total number of orders from all customers
**Field Name:** `totalNumberOfOrders`
**Type:** metric |
| Days Since Last Order
| Days since customer last ordered
**Field Name:** `daysSinceLastOrder`
**Type:** metric |
| Percent of Customers
| Percentage of total customers
**Field Name:** `percentOfCustomers`
**Type:** metric |
### Discounts
| | |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------ |
| Total Discount
| Total discount amount
**Field Name:** `totalDiscount`
**Type:** metric |
| Order Level Discounts
| Order-level discounts applied
**Field Name:** `orderLevelDiscounts`
**Type:** metric |
| Line Item Discounts
| Line item-level discounts applied
**Field Name:** `lineItemDiscounts`
**Type:** metric |
| Gift Card Discounts
| Gift card discounts applied
**Field Name:** `giftCardDiscounts`
**Type:** metric |
| Discounts Returned
| Discounts returned with refunds
**Field Name:** `discountsReturned`
**Type:** metric |
| Shipping Charge Discounts
| Shipping charge discounts
**Field Name:** `shippingChargeDiscounts`
**Type:** metric |
### Returns
| | |
| --------------------------------- | ---------------------------------------------------------------------------------------------- |
| Total Refunds
| Total refunds issued
**Field Name:** `totalRefunds`
**Type:** metric |
| Gross Returns
| Gross return value
**Field Name:** `grossReturns`
**Type:** metric |
| Net Returns
| Net return value
**Field Name:** `netReturns`
**Type:** metric |
| Total Returns
| Total returns value
**Field Name:** `totalReturns`
**Type:** metric |
| Quantity Returned
| Quantity of items returned
**Field Name:** `quantityReturned`
**Type:** metric |
| Returned Quantity Rate
| Return rate percentage
**Field Name:** `returnedQuantityRate`
**Type:** metric |
| Shipping Returned
| Shipping costs returned
**Field Name:** `shippingReturned`
**Type:** metric |
| Return Fees
| Return processing fees
**Field Name:** `returnFees`
**Type:** metric |
### Fulfillments
| | |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| Total Shipping
| Total shipping revenue
**Field Name:** `totalShipping`
**Type:** metric |
| Total Shipping Charges
| Total shipping charges collected
**Field Name:** `totalShippingCharges`
**Type:** metric |
| Median Days Order to Delivery
| Median days from order to delivery
**Field Name:** `medianDaysOrderToDelivery`
**Type:** metric |
| Median Days Order to Shipping
| Median days from order to shipping
**Field Name:** `medianDaysOrderToShipping`
**Type:** metric |
| Median Days Order to Fulfillment
| Median days from order to fulfillment
**Field Name:** `medianDaysOrderToFulfillment`
**Type:** metric |
| Median Days Shipping to Delivery
| Median days from shipping to delivery
**Field Name:** `medianDaysShippingToDelivery`
**Type:** metric |
| Orders Delivered Fast Rate
| Rate of orders delivered quickly
**Field Name:** `ordersDeliveredFastRate`
**Type:** metric |
| Orders Shipped Fast Rate
| Rate of orders shipped quickly
**Field Name:** `ordersShippedFastRate`
**Type:** metric |
| Orders With Tracking Included Rate
| Rate of orders with tracking information
**Field Name:** `ordersWithTrackingIncludedRate`
**Type:** metric |
### Taxes
| | |
| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Total Tax
| Total taxes collected
**Field Name:** `totalTax`
**Type:** metric |
| Shipping Charge Taxes
| Taxes on shipping charges
**Field Name:** `shippingChargeTaxes`
**Type:** metric |
| Taxes Returned
| Taxes returned with refunds
**Field Name:** `taxesReturned`
**Type:** metric |
| Taxes Excluding Gift Cards
| Taxes excluding gift card transactions
**Field Name:** `taxesExcludingGiftCards`
**Type:** metric |
### Sessions
| | |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Sessions
| Total sessions
**Field Name:** `sessions`
**Type:** metric |
| Online Store Visitors
| Unique store visitors
**Field Name:** `onlineStoreVisitors`
**Type:** metric |
| Pageviews
| Total page views
**Field Name:** `pageviews`
**Type:** metric |
| Bounces
| Sessions that bounced
**Field Name:** `bounces`
**Type:** metric |
| Bounce Rate
| Bounce rate percentage
**Field Name:** `bounceRate`
**Type:** metric |
| Conversion Rate
| Overall conversion rate
**Field Name:** `conversionRate`
**Type:** metric |
| Checkout Conversion Rate
| Checkout conversion rate
**Field Name:** `checkoutConversionRate`
**Type:** metric |
| Added to Cart Rate
| Add to cart rate
**Field Name:** `addedToCartRate`
**Type:** metric |
| Reached Checkout Rate
| Rate of sessions reaching checkout
**Field Name:** `reachedCheckoutRate`
**Type:** metric |
| Completed Checkout Rate
| Rate of sessions completing checkout
**Field Name:** `completedCheckoutRate`
**Type:** metric |
| Sessions That Completed Checkout
| Sessions that completed checkout
**Field Name:** `sessionsThatCompletedCheckout`
**Type:** metric |
| Sessions That Reached Checkout
| Sessions that reached checkout
**Field Name:** `sessionsThatReachedCheckout`
**Type:** metric |
| Sessions With Cart Additions
| Sessions with items added to cart
**Field Name:** `sessionsWithCartAdditions`
**Type:** metric |
| Average Session Duration
| Average session duration
**Field Name:** `averageSessionDuration`
**Type:** metric |
| Pageviews Per Session
| Average pageviews per session
**Field Name:** `pageviewsPerSession`
**Type:** metric |
### Payments
| | |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------- |
| Gross Payments
| Gross payments received
**Field Name:** `grossPayments`
**Type:** metric |
| Net Payments
| Net payments after fees
**Field Name:** `netPayments`
**Type:** metric |
| Refunded Payments
| Refunded payments count
**Field Name:** `refundedPayments`
**Type:** metric |
| Transactions
| Total transaction count
**Field Name:** `transactions`
**Type:** metric |
| Transaction Amount
| Total transaction amount
**Field Name:** `transactionAmount`
**Type:** metric |
| Orders With Transactions
| Orders with successful transactions
**Field Name:** `ordersWithTransactions`
**Type:** metric |
### Subscriptions
| | |
| --------------------------------- | ----------------------------------------------------------------------------------------------- |
| Active Subscriptions
| Active subscriptions
**Field Name:** `activeSubscriptions`
**Type:** metric |
| Subscriptions Added
| New subscriptions added
**Field Name:** `subscriptionsAdded`
**Type:** metric |
| Subscriptions Canceled
| Subscriptions canceled
**Field Name:** `subscriptionsCanceled`
**Type:** metric |
### Gift Cards
| | |
| -------------------------------------- | ---------------------------------------------------------------------------------------------------- |
| Gift Card Net Sales
| Net sales from gift cards
**Field Name:** `giftCardNetSales`
**Type:** metric |
| Gift Cards Issued
| Gift cards issued
**Field Name:** `giftCardsIssued`
**Type:** metric |
| Ending Gift Card Balance
| Ending gift card balance
**Field Name:** `endingGiftCardBalance`
**Type:** metric |
| Credited Store Credit Value
| Store credit value added
**Field Name:** `creditedStoreCreditValue`
**Type:** metric |
| Debited Store Credit Value
| Store credit value used
**Field Name:** `debitedStoreCreditValue`
**Type:** metric |
### Order
| | |
| ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order Original Total Price
| The total price of the order at the time of order creation.
**Field Name:** `orderOriginalTotalPriceSetShopMoneyAmount`
**Type:** metric |
| Order Total Received
| The total amount received from the customer before returns.
**Field Name:** `orderTotalReceivedSetShopMoneyAmount`
**Type:** metric |
| Order Total Price Before Returns
| The total price of the order, before returns. This includes taxes and discounts.
**Field Name:** `orderTotalPriceSetShopMoneyAmount`
**Type:** metric |
| Order Subtotal Price
| The sum of the prices for all line items after discounts and returns.
**Field Name:** `orderCurrentSubtotalPriceSetShopMoneyAmount`
**Type:** metric |
| Order Total Price After Returns
| The total price of the order, after returns. This includes taxes and discounts.
**Field Name:** `orderCurrentTotalPriceSetShopMoneyAmount`
**Type:** metric |
| Order Total Additional Fees After Returns
| The total amount of additional fees after returns.
**Field Name:** `orderCurrentTotalAdditionalFeesSetShopMoneyAmount`
**Type:** metric |
| Order Original Total Additional Fees
| The total amount of additional fees at the time of order creation.
**Field Name:** `orderOriginalTotalAdditionalFeesSetShopMoneyAmount`
**Type:** metric |
| Order Total Duties After Returns
| The total amount of duties after returns.
**Field Name:** `orderCurrentTotalDutiesSetShopMoneyAmount`
**Type:** metric |
| Order Original Total Duties
| The total amount of duties at the time of order creation.
**Field Name:** `orderOriginalTotalDutiesSetShopMoneyAmount`
**Type:** metric |
| Order Refund Discrepancy
| The difference between the suggested and actual refund amount of all refunds that have been applied to the order. A positive value indicates a difference in the merchant's favor, and a negative value indicates a difference in the customer's favor.
**Field Name:** `orderRefundDiscrepancySetShopMoneyAmount`
**Type:** metric |
| Order Total Shipping Price
| The total shipping amount before discounts and returns.
**Field Name:** `orderTotalShippingPriceSetShopMoneyAmount`
**Type:** metric |
| Order Total Refunded Shipping
| The total amount of shipping that was refunded.
**Field Name:** `orderTotalRefundedShippingSetShopMoneyAmount`
**Type:** metric |
| Order Total Tax
| The total tax amount before returns.
**Field Name:** `orderTotalTaxSetShopMoneyAmount`
**Type:** metric |
| Order Total Tip Received
| The sum of all tip amounts for the order.
**Field Name:** `orderTotalTipReceivedSetShopMoneyAmount`
**Type:** metric |
| Order Total Weight
| The total weight of the order before returns, in grams.
**Field Name:** `orderTotalWeight`
**Type:** metric |
| Order Cart Discount
| The total order-level discount amount, before returns.
**Field Name:** `orderCartDiscountAmountSetShopMoneyAmount`
**Type:** metric |
| Order Total Discounts After Returns
| The total amount discounted on the order after returns. This includes both order and line level discounts.
**Field Name:** `orderCurrentTotalDiscountsSetShopMoneyAmount`
**Type:** metric |
| Order Total Discounts
| The total amount discounted on the order before returns. This includes both order and line level discounts.
**Field Name:** `orderTotalDiscountsSetShopMoneyAmount`
**Type:** metric |
| Order Total Refunded
| The total amount that was refunded.
**Field Name:** `orderTotalRefundedSetShopMoneyAmount`
**Type:** metric |
| Order Net Quantity
| Net quantity of line items ordered. It shows number of sold items minus the number of returned items
**Field Name:** `orderNetQuantity`
**Type:** metric |
| Order Ordered Quantity
| Total number of items ordered. Calculated by Net quantity + Returned quantity
**Field Name:** `orderOrderedQuantity`
**Type:** metric |
| Order Refunded Quantity
| Total number of items returned
**Field Name:** `orderRefundedQuantity`
**Type:** metric |
### Order Customer
| | |
| ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order Customer Amount Spent
| The total amount that the customer has spent on orders in their lifetime.
**Field Name:** `orderCustomerAmountSpend`
**Type:** metric |
| Order Customer Number Of Orders
| The number of orders that the customer has made at the store in their lifetime.
**Field Name:** `orderCustomerNumberOfOrders`
**Type:** metric |
### Line Item
| | |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Line Item Price
| The total price of the Line Item when the order was created in shop currency.
**Field Name:** `lineItemOriginalUnitPriceSetShopMoneyAmount`
**Type:** metric |
| Line Item Tax
| The total tax charged on the Line Item (sum of its tax lines) in shop currency.
**Field Name:** `lineItemTotalTaxShopMoneyAmount`
**Type:** metric |
| Line Item Price Range (Min)
| The minimum price of the product price range
**Field Name:** `lineItemProductPriceRangeMin`
**Type:** metric |
| Line Item Price Range (Max)
| The maximum price of the product price range
**Field Name:** `lineItemProductPriceRangeMax`
**Type:** metric |
| Line Item Variant Cost
| Unit cost associated with the inventory item. This is the cost of goods sold (COGS) for profit margin calculations. Note: Requires "View product costs" permission in Shopify.
**Field Name:** `lineItemVariantInventoryCostAmount`
**Type:** metric |
| Line Item Discount
| The discount allocation for the line item
**Field Name:** `lineItemDiscountAllocation`
**Type:** metric |
| Line Item Quantity
| The number of units ordered, including refunded and removed units
**Field Name:** `lineItemQuantity`
**Type:** metric |
| Line Item Total Inventory
| The quantity of that's in stock
**Field Name:** `lineItemProductTotalInventory`
**Type:** metric |
| Line Item Variant Compare At Price
| The compare at price amount of the product variant
**Field Name:** `lineItemVariantCompareAtPriceAmount`
**Type:** metric |
| Line Item Variant Price
| The price of the product variant in the default shop currency
**Field Name:** `lineItemVariantPrice`
**Type:** metric |
| Line Item Variant Compare At Price
| The compare-at price of the variant in the default shop currency
**Field Name:** `lineItemVariantCompareAtPrice`
**Type:** metric |
| Line Item Inventory Quantity
| The total sellable quantity of the variant
**Field Name:** `lineItemVariantInventoryQuantity`
**Type:** metric |
### Line Item Refund
| | |
| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Line Item Refund Price
| The price of a refunded Line Item in shop currency.
**Field Name:** `lineItemRefundPriceShopMoneyAmount`
**Type:** metric |
| Line Item Refund Total Tax
| The total tax charged on a refunded Line Item in shop currency.
**Field Name:** `lineItemRefundTotalTaxShopMoneyAmount`
**Type:** metric |
| Line Item Refund Subtotal
| The subtotal price of a refunded Line Item in shop currency.
**Field Name:** `lineItemRefundSubTotalShopMoneyAmount`
**Type:** metric |
| Line Item Refund Quantity
| The quantity of a refunded Line Item
**Field Name:** `lineItemRefundQuantity`
**Type:** metric |
### Product
| | |
| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Product Total Inventory
| The quantity of that's in stock
**Field Name:** `productTotalInventory`
**Type:** metric |
| Product On Hand Inventory
| The total physical units on hand across all locations (available + committed + other unavailable states). Unlike "Product Total Inventory" (available to sell), this reflects what is physically in the warehouse.
**Field Name:** `productOnHandInventory`
**Type:** metric |
| Product Variant Unit Cost
| The unit cost of the product variant
**Field Name:** `productVariantUnitCost`
**Type:** metric |
| Product Variant Price
| The price of the product variant
**Field Name:** `productVariantPrice`
**Type:** metric |
| Product Price Range (Min)
| The minimum price of the product, expressed in decimal numbers
**Field Name:** `productPriceRangeMin`
**Type:** metric |
| Product Price Range (Max)
| The maximum price of the product, expressed in decimal numbers
**Field Name:** `productPriceRangeMax`
**Type:** metric |
### Refund
| | |
| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Refund Total Refunded
| The total refunded amount in shop currency.
**Field Name:** `refundTotalRefundedShopMoneyAmount`
**Type:** metric |
| Refund Order Adjustment
| The order adjustment amount in shop currency.
**Field Name:** `refundOrderAdjustmentShopMoneyAmount`
**Type:** metric |
| Refund Order Adjustment Tax
| The order adjustment tax amount in shop currency.
**Field Name:** `refundOrderAdjustmentTaxShopMoneyAmount`
**Type:** metric |
### Traffic Source
| | |
| -------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Traffic Source Days to Conversion
| The number of days between first visit and order conversion
**Field Name:** `customerJourneyDaysToConversion`
**Type:** metric |
### Inventory by Location
| | |
| ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Inventory Available
| Units available to sell at this location (on hand minus committed and unavailable)
**Field Name:** `inventoryAvailableQuantity`
**Type:** metric |
| Inventory On Hand
| Total physical units at this location, including committed and unavailable stock
**Field Name:** `inventoryOnHandQuantity`
**Type:** metric |
| Inventory Committed
| Units at this location that belong to placed but unfulfilled orders
**Field Name:** `inventoryCommittedQuantity`
**Type:** metric |
| Inventory Incoming
| Units on their way to this location (incoming transfers and purchase orders)
**Field Name:** `inventoryIncomingQuantity`
**Type:** metric |
| Inventory Reserved
| Units at this location held temporarily (e.g. draft orders), not available to sell
**Field Name:** `inventoryReservedQuantity`
**Type:** metric |
***
## Related
Browse all platforms
WooCommerce metrics & dimensions
TiendaNube metrics & dimensions
Stripe metrics & dimensions
# Snapchat Ads Metrics & Dimensions
Source: https://support.detrics.io/data-source/snapchat-ads/fields
Complete reference for Snapchat Ads dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for Snapchat Ads data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Snapchat Ads data.
### Account
| | |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Account ID
| Unique identifier for the Snapchat ad account
**Field Name:** `accountId`
**Type:** dimension |
| Account Name
| Name of the Snapchat ad account
**Field Name:** `accountName`
**Type:** dimension |
| Account Currency
| ISO currency code of the ad account (e.g. USD, EUR)
**Field Name:** `accountCurrency`
**Type:** dimension |
| Account Timezone
| IANA timezone of the ad account (e.g. America/Los\_Angeles)
**Field Name:** `accountTimezone`
**Type:** dimension |
| Account Status
| Status of the ad account (ACTIVE, PAUSED)
**Field Name:** `accountStatus`
**Type:** dimension |
| Account Type
| Type of the ad account (PARTNER, DIRECT)
**Field Name:** `accountType`
**Type:** dimension |
| Organization ID
| ID of the Snapchat business organization
**Field Name:** `organizationId`
**Type:** dimension |
### Campaign
| | |
| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign Name
| Name of the campaign
**Field Name:** `campaignName`
**Type:** dimension |
| Campaign ID
| Unique identifier for the campaign
**Field Name:** `campaignId`
**Type:** dimension |
| Campaign Status
| Status of the campaign (ACTIVE, PAUSED, ARCHIVED)
**Field Name:** `campaignStatus`
**Type:** dimension |
| Campaign Objective
| Campaign objective (BRAND\_AWARENESS, WEB\_VIEW, APP\_INSTALL, VIDEO\_VIEW, etc.)
**Field Name:** `campaignObjective`
**Type:** dimension |
| Campaign Objective (V2)
| New-format campaign objective (AWARENESS\_AND\_ENGAGEMENT, TRAFFIC, APP\_PROMOTION, LEADS, SALES)
**Field Name:** `campaignObjectiveV2`
**Type:** dimension |
| Campaign Buy Model
| Buy model of the campaign (AUCTION, RESERVED)
**Field Name:** `campaignBuyModel`
**Type:** dimension |
| Campaign Start Time
| Date the campaign was scheduled to start
**Field Name:** `campaignStartTime`
**Type:** dimension |
| Campaign End Time
| Date the campaign was scheduled to end
**Field Name:** `campaignEndTime`
**Type:** dimension |
| Campaign Daily Budget
| Daily budget amount for the campaign in account currency
**Field Name:** `campaignDailyBudget`
**Type:** dimension |
| Campaign Lifetime Spend Cap
| Total lifetime spend cap for the campaign in account currency
**Field Name:** `campaignLifetimeSpendCap`
**Type:** dimension |
### Ad Squad
| | |
| --------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Squad Name
| Name of the ad squad
**Field Name:** `adSquadName`
**Type:** dimension |
| Ad Squad ID
| Unique identifier for the ad squad
**Field Name:** `adSquadId`
**Type:** dimension |
| Ad Squad Status
| Status of the ad squad (ACTIVE, PAUSED)
**Field Name:** `adSquadStatus`
**Type:** dimension |
| Ad Squad Type
| Type of the ad squad (SNAP\_ADS, STORY)
**Field Name:** `adSquadType`
**Type:** dimension |
| Ad Squad Billing Event
| Billing event for the ad squad (IMPRESSION, SWIPE)
**Field Name:** `adSquadBillingEvent`
**Type:** dimension |
| Ad Squad Bid Strategy
| Bidding strategy (AUTO\_BID, LOWEST\_COST\_WITH\_MAX\_BID, TARGET\_COST)
**Field Name:** `adSquadBidStrategy`
**Type:** dimension |
| Ad Squad Optimization Goal
| Optimization goal (IMPRESSIONS, SWIPES, INSTALLS, VIDEO\_VIEWS, etc.)
**Field Name:** `adSquadOptimizationGoal`
**Type:** dimension |
| Ad Squad Daily Budget
| Daily budget for the ad squad in account currency
**Field Name:** `adSquadDailyBudget`
**Type:** dimension |
| Ad Squad Lifetime Budget
| Lifetime budget for the ad squad in account currency
**Field Name:** `adSquadLifetimeBudget`
**Type:** dimension |
| Ad Squad Start Time
| Date the ad squad was scheduled to start
**Field Name:** `adSquadStartTime`
**Type:** dimension |
| Ad Squad End Time
| Date the ad squad was scheduled to end
**Field Name:** `adSquadEndTime`
**Type:** dimension |
| Ad Squad Pacing Type
| Pacing type for the ad squad (STANDARD, ACCELERATED)
**Field Name:** `adSquadPacingType`
**Type:** dimension |
| Ad Squad Delivery Constraint
| Budget delivery constraint (DAILY\_BUDGET, LIFETIME\_BUDGET)
**Field Name:** `adSquadDeliveryConstraint`
**Type:** dimension |
### Ad
| | |
| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Name
| Name of the ad
**Field Name:** `adName`
**Type:** dimension |
| Ad ID
| Unique identifier for the ad
**Field Name:** `adId`
**Type:** dimension |
| Ad Status
| Status of the ad (ACTIVE, PAUSED, ARCHIVED)
**Field Name:** `adStatus`
**Type:** dimension |
| Ad Type
| Type of the ad (REMOTE\_WEBPAGE, APP\_INSTALL, DEEP\_LINK\_ATTACHMENT, etc.)
**Field Name:** `adType`
**Type:** dimension |
| Ad Render Type
| How the ad is rendered (STATIC, COMPOSITE)
**Field Name:** `adRenderType`
**Type:** dimension |
| Ad Review Status
| Review status (APPROVED, PENDING, REJECTED)
**Field Name:** `adReviewStatus`
**Type:** dimension |
| Creative ID
| ID of the creative used by the ad
**Field Name:** `adCreativeId`
**Type:** dimension |
### Geography
| | |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Country
| ISO 2-letter country code of the user
**Field Name:** `country`
**Type:** dimension |
| Region
| US-only region (state) breakdown. Cannot be combined with conversion metrics.
**Field Name:** `region`
**Type:** dimension |
| DMA
| US-only Designated Market Area. Cannot be combined with conversion metrics.
**Field Name:** `dma`
**Type:** dimension |
### Demographics
| | |
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Gender
| Gender of the user (male, female, unknown)
**Field Name:** `gender`
**Type:** dimension |
| Age Bucket
| Age range of the user (13-17, 18-20, 21-24, 25-34, 35-44, 45-54, 55+, 35+)
**Field Name:** `ageBucket`
**Type:** dimension |
### Device
| | |
| --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Operating System
| Mobile operating system (ios, android, web)
**Field Name:** `operatingSystem`
**Type:** dimension |
| Device Make
| Device manufacturer (Apple, Samsung, etc.). Cannot be combined with conversion metrics.
**Field Name:** `deviceMake`
**Type:** dimension |
### Interests
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------ |
| Lifestyle Category
| Snapchat lifestyle interest category
**Field Name:** `lifestyleCategory`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Snapchat Ads campaigns.
### Delivery
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------ |
| Spend
| Total amount spent in account currency
**Field Name:** `spend`
**Type:** metric |
| Impressions
| Total number of times the ad was shown
**Field Name:** `impressions`
**Type:** metric |
| Swipes
| Total number of swipe-up actions on the ad
**Field Name:** `swipes`
**Type:** metric |
| Unique Reach
| Number of unique users reached
**Field Name:** `uniques`
**Type:** metric |
| Frequency
| Average impressions per unique user
**Field Name:** `frequency`
**Type:** metric |
| Landing Page Views
| Number of landing page views from the ad
**Field Name:** `landingPageViews`
**Type:** metric |
### Video
| | |
| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Video Views
| Number of times the video was viewed (≥2 seconds)
**Field Name:** `videoViews`
**Type:** metric |
| Video Views (5s)
| Number of times the video was viewed for at least 5 seconds
**Field Name:** `videoViews5s`
**Type:** metric |
| Video Views (15s)
| Number of times the video was viewed for at least 15 seconds
**Field Name:** `videoViews15s`
**Type:** metric |
| Screen Time (Seconds)
| Total screen time in seconds across all impressions
**Field Name:** `screenTimeSeconds`
**Type:** metric |
| Video 25% Views
| Number of users who watched at least 25% of the video
**Field Name:** `quartile1`
**Type:** metric |
| Video 50% Views
| Number of users who watched at least 50% of the video
**Field Name:** `quartile2`
**Type:** metric |
| Video 75% Views
| Number of users who watched at least 75% of the video
**Field Name:** `quartile3`
**Type:** metric |
| Video 100% Views
| Number of users who watched the full video
**Field Name:** `viewCompletion`
**Type:** metric |
| Engaged Views
| Engaged views (15+ seconds or completed video) since Feb 2025
**Field Name:** `engagedViews`
**Type:** metric |
### Engagement
| | |
| ------------------------- | ------------------------------------------------------------------------------------------------------ |
| Profile Clicks
| Number of clicks on the brand profile
**Field Name:** `profileClicks`
**Type:** metric |
| Shares
| Number of times the ad was shared
**Field Name:** `shares`
**Type:** metric |
| Saves
| Number of times the ad was saved
**Field Name:** `saves`
**Type:** metric |
### Story
| | |
| -------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Story Opens
| Number of opens for Story ads
**Field Name:** `storyOpens`
**Type:** metric |
| Story Completes
| Number of users who completed viewing the Story
**Field Name:** `storyCompletes`
**Type:** metric |
### App Install
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------- |
| Android Installs
| Number of Android app installs from the ad
**Field Name:** `androidInstalls`
**Type:** metric |
| iOS Installs
| Number of iOS app installs from the ad
**Field Name:** `iosInstalls`
**Type:** metric |
| Total Installs
| Total app installs across all platforms
**Field Name:** `totalInstalls`
**Type:** metric |
### Lead
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------- |
| Native Leads
| Number of leads collected via native lead form
**Field Name:** `nativeLeads`
**Type:** metric |
### Conversions
| | |
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Purchases
| Number of purchase conversions (7-day swipe + 1-day view default attribution)
**Field Name:** `conversionPurchases`
**Type:** metric |
| Sign Ups
| Number of sign-up conversions
**Field Name:** `conversionSignUps`
**Type:** metric |
| App Opens
| Number of app open conversions
**Field Name:** `conversionAppOpens`
**Type:** metric |
| Page Views
| Number of page-view conversions
**Field Name:** `conversionPageViews`
**Type:** metric |
| Adds To Cart
| Number of add-to-cart conversions
**Field Name:** `conversionAddCart`
**Type:** metric |
| Checkouts Started
| Number of checkout-started conversions
**Field Name:** `conversionStartCheckout`
**Type:** metric |
| Searches
| Number of search conversions
**Field Name:** `conversionSearches`
**Type:** metric |
| Subscriptions
| Number of subscription conversions
**Field Name:** `conversionSubscribe`
**Type:** metric |
| Logins
| Number of login conversions
**Field Name:** `conversionLogin`
**Type:** metric |
| Conversion Shares
| Number of share conversions
**Field Name:** `conversionShare`
**Type:** metric |
| Visits
| Number of visit conversions
**Field Name:** `conversionVisit`
**Type:** metric |
| Tutorials Completed
| Number of tutorial-completion conversions
**Field Name:** `conversionCompleteTutorial`
**Type:** metric |
| Invites
| Number of invite conversions
**Field Name:** `conversionInvite`
**Type:** metric |
| Levels Completed
| Number of level-completion conversions (game apps)
**Field Name:** `conversionLevelCompletes`
**Type:** metric |
| Achievements Unlocked
| Number of achievement-unlocked conversions
**Field Name:** `conversionAchievementUnlocked`
**Type:** metric |
| Adds To Wishlist
| Number of add-to-wishlist conversions
**Field Name:** `conversionAddToWishlist`
**Type:** metric |
| Trials Started
| Number of trial-started conversions
**Field Name:** `conversionStartTrial`
**Type:** metric |
| List Views
| Number of list-view conversions
**Field Name:** `conversionListView`
**Type:** metric |
| Credits Spent
| Number of credits-spent conversions
**Field Name:** `conversionSpendCredits`
**Type:** metric |
| Ad Clicks
| Number of ad-click conversions
**Field Name:** `conversionAdClick`
**Type:** metric |
| Ad Views
| Number of ad-view conversions
**Field Name:** `conversionAdView`
**Type:** metric |
| Billing Added
| Number of add-billing conversions
**Field Name:** `conversionAddBilling`
**Type:** metric |
| Reservations
| Number of reservation conversions
**Field Name:** `conversionReserve`
**Type:** metric |
| Conversion Saves
| Number of save conversions (distinct from delivery saves)
**Field Name:** `conversionSave`
**Type:** metric |
| Conversion Rate
| Calculated conversion rate (purchases / swipes)
**Field Name:** `conversionRate`
**Type:** metric |
### Conversion Values
| | |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Purchase Value
| Total monetary value of purchase conversions in account currency
**Field Name:** `conversionPurchasesValue`
**Type:** metric |
| Subscription Value
| Total monetary value of subscription conversions in account currency
**Field Name:** `conversionSubscribeValue`
**Type:** metric |
| Add To Cart Value
| Total monetary value of add-to-cart conversions in account currency
**Field Name:** `conversionAddCartValue`
**Type:** metric |
| Checkout Started Value
| Total monetary value of checkout-started conversions in account currency
**Field Name:** `conversionStartCheckoutValue`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
TikTok Ads metrics & dimensions
X Ads metrics & dimensions
# Stripe Metrics & Dimensions
Source: https://support.detrics.io/data-source/stripe/fields
Complete reference for Stripe payment dimensions and metrics
**Last updated:** August 6, 2026
218 dimensions
70 metrics
This reference covers all available dimensions and metrics for Stripe data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your Stripe data.
### Most Used
| | |
| ------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Report Date
| Detrics internal calculation. Date bucket for the SaaS metrics report (depends on time aggregation: daily or monthly)
**Field Name:** `reportDate`
**Type:** dimension |
| Subscription Status
| Current status: active, canceled, incomplete, incomplete\_expired, past\_due, paused, trialing, or unpaid
**Field Name:** `subscriptionStatus`
**Type:** dimension |
| Plan Name
| Name of the subscription plan (from plan nickname or product name)
**Field Name:** `subscriptionItemPlanName`
**Type:** dimension |
| Plan Interval
| Billing interval of the plan (month, year, week, day)
**Field Name:** `subscriptionItemPlanInterval`
**Type:** dimension |
| Customer Name
| Name of the customer
**Field Name:** `customerName`
**Type:** dimension |
| Customer Email
| Email address of the customer
**Field Name:** `customerEmail`
**Type:** dimension |
| Status
| Current status of the invoice (draft, open, paid, void, uncollectible)
**Field Name:** `invoiceStatus`
**Type:** dimension |
| Charge Status
| Status of the charge (succeeded, pending, failed)
**Field Name:** `chargeStatus`
**Type:** dimension |
| Payment Method Type
| Type of payment method used (card, link, apple\_pay, google\_pay, bank\_transfer, etc.)
**Field Name:** `chargePaymentMethodType`
**Type:** dimension |
| Transaction Type
| Type of transaction (charge, refund, payout, adjustment, transfer, etc.)
**Field Name:** `balanceTransactionType`
**Type:** dimension |
### SaaS Metrics
| | |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Report Currency
| Detrics internal calculation. Currency used for all monetary SaaS metrics in this report
**Field Name:** `reportCurrency`
**Type:** dimension |
### Cohort Retention
| | |
| ------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Cohort Month
| Detrics internal calculation. The month when subscribers in this cohort first subscribed
**Field Name:** `cohortMonth`
**Type:** dimension |
| Cohort Age (Months)
| Detrics internal calculation. Number of months since the cohort started. 0 = signup month
**Field Name:** `cohortAge`
**Type:** dimension |
### Subscription
| | |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Subscription ID
| Unique identifier for the subscription
**Field Name:** `subscriptionId`
**Type:** dimension |
| Subscription Created At
| When the subscription was created
**Field Name:** `subscriptionCreatedAt`
**Type:** dimension |
| Start Date
| Date the subscription started (may differ from created date)
**Field Name:** `subscriptionStartDate`
**Type:** dimension |
| Current Period Start
| Start of the current billing period
**Field Name:** `subscriptionCurrentPeriodStart`
**Type:** dimension |
| Current Period End
| End of the current billing period
**Field Name:** `subscriptionCurrentPeriodEnd`
**Type:** dimension |
| Currency
| Currency of the subscription
**Field Name:** `subscriptionCurrency`
**Type:** dimension |
| Cancelled At
| When the subscription was cancelled
**Field Name:** `subscriptionCancelledAt`
**Type:** dimension |
| Cancel At Period End
| Whether the subscription will cancel at the end of the current period instead of immediately
**Field Name:** `subscriptionCancelAtPeriodEnd`
**Type:** dimension |
| Ended At
| When the subscription ended
**Field Name:** `subscriptionEndedAt`
**Type:** dimension |
| Cancellation Reason
| Reason for subscription cancellation
**Field Name:** `subscriptionCancelledReason`
**Type:** dimension |
| Cancellation Feedback
| Customer feedback on cancellation (e.g., too\_expensive, missing\_features, switched\_service)
**Field Name:** `subscriptionCancelledFeedback`
**Type:** dimension |
| Cancellation Comment
| Additional comments about cancellation
**Field Name:** `subscriptionCancelledComment`
**Type:** dimension |
| Has Discount
| Whether the subscription has a discount applied
**Field Name:** `subscriptionHasDiscount`
**Type:** dimension |
| Collection Method
| Method used to collect subscription payments
**Field Name:** `subscriptionCollectionMethod`
**Type:** dimension |
| Description
| Description of the subscription
**Field Name:** `subscriptionDescription`
**Type:** dimension |
| Billing Cycle Anchor
| Date that determines when billing cycles begin
**Field Name:** `subscriptionBillingCycleAnchor`
**Type:** dimension |
| Latest Invoice
| ID of the most recent invoice for this subscription
**Field Name:** `subscriptionLatestInvoice`
**Type:** dimension |
| Trial Start
| Start date of the trial period
**Field Name:** `subscriptionTrialStart`
**Type:** dimension |
| Trial End
| End date of the trial period
**Field Name:** `subscriptionTrialEnd`
**Type:** dimension |
| URL
| URL associated with the subscription
**Field Name:** `subscriptionUrl`
**Type:** dimension |
| Item ID
| Identifier for subscription item
**Field Name:** `subscriptionItemId`
**Type:** dimension |
| Item Created At
| When the subscription item was created
**Field Name:** `subscriptionItemCreated`
**Type:** dimension |
| Plan ID
| Identifier for the subscription plan
**Field Name:** `subscriptionItemPlanId`
**Type:** dimension |
| Plan Active
| Whether the plan is active
**Field Name:** `subscriptionItemPlanActive`
**Type:** dimension |
| Price ID
| Identifier for the price
**Field Name:** `subscriptionItemPriceId`
**Type:** dimension |
### Customer
| | |
| ------------------------------ | -------------------------------------------------------------------------------------------------------------------- |
| Customer ID
| Unique identifier for the customer
**Field Name:** `customerId`
**Type:** dimension |
| Customer Phone
| Phone number of the customer
**Field Name:** `customerPhone`
**Type:** dimension |
| Customer Currency
| Preferred currency of the customer
**Field Name:** `customerCurrency`
**Type:** dimension |
| Customer Created At
| Date customer was created
**Field Name:** `customerCreatedAt`
**Type:** dimension |
| Customer Delinquent
| Whether the customer has a past-due invoice
**Field Name:** `customerDelinquent`
**Type:** dimension |
| Customer City
| City of the customer
**Field Name:** `customerCity`
**Type:** dimension |
| Customer Country
| Country of the customer
**Field Name:** `customerCountry`
**Type:** dimension |
| Customer State
| State or province of the customer
**Field Name:** `customerState`
**Type:** dimension |
| Address Line 1
| First line of customer address
**Field Name:** `customerLine1`
**Type:** dimension |
| Address Line 2
| Second line of customer address
**Field Name:** `customerLine2`
**Type:** dimension |
| Postal Code
| Postal code of the customer
**Field Name:** `customerPostalCode`
**Type:** dimension |
### Invoice
| | |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Invoice ID
| Unique identifier for the invoice
**Field Name:** `invoiceId`
**Type:** dimension |
| Number
| Invoice number
**Field Name:** `invoiceNumber`
**Type:** dimension |
| Invoice Created At
| When the invoice was created
**Field Name:** `invoiceCreatedAt`
**Type:** dimension |
| Currency
| Currency of the invoice
**Field Name:** `invoiceCurrency`
**Type:** dimension |
| Billing Reason
| Reason for the billing (subscription\_create, subscription\_cycle, manual, etc.)
**Field Name:** `invoiceBillingReason`
**Type:** dimension |
| Paid
| Whether the invoice has been paid
**Field Name:** `invoicePaid`
**Type:** dimension |
| Due Date
| Due date for the invoice
**Field Name:** `invoiceDueDate`
**Type:** dimension |
| Period Start
| Start of the invoice period
**Field Name:** `invoicePeriodStart`
**Type:** dimension |
| Period End
| End of the invoice period
**Field Name:** `invoicePeriodEnd`
**Type:** dimension |
| Collection Method
| Method used to collect payment (charge\_automatically or send\_invoice)
**Field Name:** `invoiceCollectionMethod`
**Type:** dimension |
| Subscription
| Associated subscription ID
**Field Name:** `invoiceSubscription`
**Type:** dimension |
| Invoice Account Country
| Country of the account
**Field Name:** `invoiceAccountCountry`
**Type:** dimension |
| Invoice Account Name
| Name of the account
**Field Name:** `invoiceAccountName`
**Type:** dimension |
| Account Tax IDs
| Tax IDs associated with the account
**Field Name:** `invoiceAccountTaxIds`
**Type:** dimension |
| Application
| Application associated with the invoice
**Field Name:** `invoiceApplication`
**Type:** dimension |
| Custom Fields
| Custom fields added to the invoice
**Field Name:** `invoiceCustomFields`
**Type:** dimension |
| Description
| Description of the invoice
**Field Name:** `invoiceDescription`
**Type:** dimension |
| Effective At
| When the invoice becomes effective
**Field Name:** `invoiceEffectiveAt`
**Type:** dimension |
| Ending Balance
| Ending balance of the invoice
**Field Name:** `invoiceEndingBalance`
**Type:** dimension |
| Footer
| Footer text of the invoice
**Field Name:** `invoiceFooter`
**Type:** dimension |
| Hosted URL
| URL where the invoice can be viewed
**Field Name:** `invoiceHostedUrl`
**Type:** dimension |
| PDF
| URL to download the invoice PDF
**Field Name:** `invoicePdf`
**Type:** dimension |
| Receipt Number
| Receipt number for the invoice
**Field Name:** `invoiceReceiptNumber`
**Type:** dimension |
| Next Payment Attempt
| When the next payment attempt will be made
**Field Name:** `invoiceNextPaymentAttempt`
**Type:** dimension |
### Charge
| | |
| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Charge ID
| Unique identifier for the charge
**Field Name:** `chargeId`
**Type:** dimension |
| Charge Created At
| When the charge was created
**Field Name:** `chargeCreatedAt`
**Type:** dimension |
| Charge Currency
| Currency of the charge
**Field Name:** `chargeCurrency`
**Type:** dimension |
| Charge Paid
| Whether the charge was paid
**Field Name:** `chargePaid`
**Type:** dimension |
| Charge Refunded
| Whether the charge was fully refunded
**Field Name:** `chargeRefunded`
**Type:** dimension |
| Charge Captured
| Whether the charge was captured (authorized charges may not be captured yet)
**Field Name:** `chargeCaptured`
**Type:** dimension |
| Charge Disputed
| Whether the charge is disputed
**Field Name:** `chargeDisputed`
**Type:** dimension |
| Card Brand
| Card brand (visa, mastercard, amex, etc.)
**Field Name:** `chargeCardBrand`
**Type:** dimension |
| Card Last 4
| Last 4 digits of the card number
**Field Name:** `chargeCardLast4`
**Type:** dimension |
| Card Funding
| Card funding type (credit, debit, prepaid, unknown)
**Field Name:** `chargeCardFunding`
**Type:** dimension |
| Card Country
| Country where the card was issued
**Field Name:** `chargeCardCountry`
**Type:** dimension |
| Failure Code
| Error code for failed charges (e.g., card\_declined, expired\_card)
**Field Name:** `chargeFailureCode`
**Type:** dimension |
| Failure Message
| Human-readable message for charge failure
**Field Name:** `chargeFailureMessage`
**Type:** dimension |
| Receipt Email
| Email where the receipt was sent
**Field Name:** `chargeReceiptEmail`
**Type:** dimension |
| Receipt Number
| Receipt number for the charge
**Field Name:** `chargeReceiptNumber`
**Type:** dimension |
| Statement Descriptor
| How the charge appears on bank/card statements
**Field Name:** `chargeStatementDescriptor`
**Type:** dimension |
| Payment Method ID
| ID of the payment method used
**Field Name:** `chargePaymentMethod`
**Type:** dimension |
| Charge Description
| Description of the charge
**Field Name:** `chargeDescription`
**Type:** dimension |
| Outcome Type
| Charge outcome type (authorized, manual\_review, blocked, etc.)
**Field Name:** `chargeOutcomeType`
**Type:** dimension |
| Risk Level
| Risk level assessed by Stripe Radar (normal, elevated, highest, not\_assessed)
**Field Name:** `chargeOutcomeRiskLevel`
**Type:** dimension |
| Outcome Message
| Stripe Radar message explaining the charge outcome
**Field Name:** `chargeOutcomeSellerMessage`
**Type:** dimension |
### Payment
| | |
| ------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Payment ID
| Unique identifier for the payment intent
**Field Name:** `paymentId`
**Type:** dimension |
| Payment Created At
| When the payment intent was created
**Field Name:** `paymentCreatedAt`
**Type:** dimension |
| Status
| Current status (requires\_payment\_method, requires\_confirmation, processing, succeeded, canceled)
**Field Name:** `paymentStatus`
**Type:** dimension |
| Application
| Application associated with the payment
**Field Name:** `paymentApplication`
**Type:** dimension |
| Automatic Payment Methods
| Available automatic payment methods
**Field Name:** `paymentAutomaticPaymentMethods`
**Type:** dimension |
| Cancelled At
| When the payment was cancelled
**Field Name:** `paymentCancelledAt`
**Type:** dimension |
| Cancellation Reason
| Reason for payment cancellation
**Field Name:** `paymentCancellationReason`
**Type:** dimension |
| Capture Method
| Method used to capture payment (automatic or manual)
**Field Name:** `paymentCaptureMethod`
**Type:** dimension |
| Client Secret
| Client secret for payment intent
**Field Name:** `paymentClientSecret`
**Type:** dimension |
| Confirmation Method
| Method used to confirm payment (automatic or manual)
**Field Name:** `paymentConfirmationMethod`
**Type:** dimension |
| Currency
| Currency of the payment
**Field Name:** `paymentCurrency`
**Type:** dimension |
| Description
| Payment description
**Field Name:** `paymentDescription`
**Type:** dimension |
| Latest Charge
| ID of the latest charge
**Field Name:** `paymentLatestCharge`
**Type:** dimension |
| Live Mode
| Whether the payment is in live mode
**Field Name:** `paymentLivemode`
**Type:** dimension |
| Method Types
| Available payment method types
**Field Name:** `paymentMethodTypes`
**Type:** dimension |
| Receipt Email
| Email where receipt was sent
**Field Name:** `paymentReceiptEmail`
**Type:** dimension |
| Review
| Payment review status
**Field Name:** `paymentReview`
**Type:** dimension |
| Shipping
| Shipping details for payment
**Field Name:** `paymentShipping`
**Type:** dimension |
| Source
| Payment source information
**Field Name:** `paymentSource`
**Type:** dimension |
### Refund
| | |
| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Refund ID
| Unique identifier for the refund
**Field Name:** `refundId`
**Type:** dimension |
| Refund Created At
| When the refund was created
**Field Name:** `refundCreatedAt`
**Type:** dimension |
| Refund Status
| Status of the refund (succeeded, pending, failed, canceled)
**Field Name:** `refundStatus`
**Type:** dimension |
| Refund Currency
| Currency of the refund
**Field Name:** `refundCurrency`
**Type:** dimension |
| Refund Reason
| Reason for the refund (duplicate, fraudulent, requested\_by\_customer)
**Field Name:** `refundReason`
**Type:** dimension |
| Refund Charge ID
| ID of the original charge that was refunded
**Field Name:** `refundChargeId`
**Type:** dimension |
| Refund Payment Intent ID
| ID of the payment intent associated with the refund
**Field Name:** `refundPaymentIntentId`
**Type:** dimension |
### Balance Transaction
| | |
| ---------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| Transaction ID
| Unique identifier for the balance transaction
**Field Name:** `balanceTransactionId`
**Type:** dimension |
| Transaction Created At
| When the balance transaction was created
**Field Name:** `balanceTransactionCreated`
**Type:** dimension |
| Reporting Category
| Reporting category for financial reports
**Field Name:** `balanceTransactionReportingCategory`
**Type:** dimension |
| Transaction Status
| Status of the balance transaction (available or pending)
**Field Name:** `balanceTransactionStatus`
**Type:** dimension |
| Transaction Currency
| Currency of the balance transaction
**Field Name:** `balanceTransactionCurrency`
**Type:** dimension |
| Transaction Description
| Description of the balance transaction
**Field Name:** `balanceTransactionDescription`
**Type:** dimension |
### Payout
| | |
| ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| Payout ID
| Unique identifier for the payout
**Field Name:** `payoutId`
**Type:** dimension |
| Payout Created At
| When the payout was created
**Field Name:** `payoutCreatedAt`
**Type:** dimension |
| Payout Status
| Status of the payout (paid, pending, in\_transit, canceled, failed)
**Field Name:** `payoutStatus`
**Type:** dimension |
| Payout Currency
| Currency of the payout
**Field Name:** `payoutCurrency`
**Type:** dimension |
| Payout Method
| Method used (standard or instant)
**Field Name:** `payoutMethod`
**Type:** dimension |
| Payout Type
| Type of payout (bank\_account or card)
**Field Name:** `payoutType`
**Type:** dimension |
| Payout Description
| Description of the payout
**Field Name:** `payoutDescription`
**Type:** dimension |
| Arrival Date
| Date the payout is expected to arrive in the bank account
**Field Name:** `payoutArrivalDate`
**Type:** dimension |
| Automatic
| Whether the payout was created by an automated schedule
**Field Name:** `payoutAutomatic`
**Type:** dimension |
| Failure Code
| Error code for failed payouts
**Field Name:** `payoutFailureCode`
**Type:** dimension |
| Failure Message
| Human-readable message for payout failure
**Field Name:** `payoutFailureMessage`
**Type:** dimension |
### Event
| | |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Event ID
| Unique identifier for the event
**Field Name:** `eventId`
**Type:** dimension |
| Event Type
| Type of event (e.g., customer.subscription.created, charge.succeeded, invoice.paid)
**Field Name:** `eventType`
**Type:** dimension |
| Event Created At
| When the event occurred. Note: Stripe retains events for 30 days only
**Field Name:** `eventCreatedAt`
**Type:** dimension |
| Event Livemode
| Whether the event occurred in live mode
**Field Name:** `eventLivemode`
**Type:** dimension |
| Resource Type
| Type of Stripe object affected (subscription, charge, invoice, customer, etc.)
**Field Name:** `eventResourceType`
**Type:** dimension |
| Resource ID
| ID of the Stripe object affected by this event
**Field Name:** `eventResourceId`
**Type:** dimension |
| Event Customer ID
| Customer ID associated with the event
**Field Name:** `eventCustomerId`
**Type:** dimension |
| Event Customer Email
| Customer email associated with the event
**Field Name:** `eventCustomerEmail`
**Type:** dimension |
| Event Customer Name
| Customer name associated with the event
**Field Name:** `eventCustomerName`
**Type:** dimension |
| Event Subscription Status
| Subscription status at the time of the event
**Field Name:** `eventSubscriptionStatus`
**Type:** dimension |
| Event Plan Interval
| Plan billing interval at the time of the event
**Field Name:** `eventSubscriptionPlanInterval`
**Type:** dimension |
| Event Charge Status
| Charge status at the time of the event
**Field Name:** `eventChargeStatus`
**Type:** dimension |
| Event Charge Currency
| Currency of the charge in the event
**Field Name:** `eventChargeCurrency`
**Type:** dimension |
| Event Invoice Status
| Invoice status at the time of the event
**Field Name:** `eventInvoiceStatus`
**Type:** dimension |
| Previous Subscription Status
| Subscription status before the change (from previous\_attributes)
**Field Name:** `eventPreviousSubscriptionStatus`
**Type:** dimension |
| New Subscription Status
| Subscription status after the change
**Field Name:** `eventNewSubscriptionStatus`
**Type:** dimension |
| Previous Cancel At Period End
| Cancel-at-period-end flag before the change
**Field Name:** `eventPreviousCancelAtPeriodEnd`
**Type:** dimension |
| New Cancel At Period End
| Cancel-at-period-end flag after the change
**Field Name:** `eventNewCancelAtPeriodEnd`
**Type:** dimension |
| Previous Plan Interval
| Plan interval before the change (useful for upgrade/downgrade tracking)
**Field Name:** `eventPreviousPlanInterval`
**Type:** dimension |
| New Plan Interval
| Plan interval after the change
**Field Name:** `eventNewPlanInterval`
**Type:** dimension |
| Previous Customer Delinquent
| Customer delinquent status before the change
**Field Name:** `eventPreviousCustomerDelinquent`
**Type:** dimension |
| New Customer Delinquent
| Customer delinquent status after the change
**Field Name:** `eventNewCustomerDelinquent`
**Type:** dimension |
| Previous Default Source
| Customer default payment source before the change
**Field Name:** `eventPreviousCustomerDefaultSource`
**Type:** dimension |
| New Default Source
| Customer default payment source after the change
**Field Name:** `eventNewCustomerDefaultSource`
**Type:** dimension |
| Previous Invoice Status
| Invoice status before the change
**Field Name:** `eventPreviousInvoiceStatus`
**Type:** dimension |
| New Invoice Status
| Invoice status after the change
**Field Name:** `eventNewInvoiceStatus`
**Type:** dimension |
### Product
| | |
| ------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Product ID
| Unique identifier for the product
**Field Name:** `productId`
**Type:** dimension |
| Name
| Product name
**Field Name:** `productName`
**Type:** dimension |
| Active
| Whether the product is active
**Field Name:** `productActive`
**Type:** dimension |
| Description
| Product description
**Field Name:** `productDescription`
**Type:** dimension |
| Type
| Type of product (good or service)
**Field Name:** `productType`
**Type:** dimension |
| Images
| Product image URLs
**Field Name:** `productImages`
**Type:** dimension |
| Attributes
| Product attributes
**Field Name:** `productAttributes`
**Type:** dimension |
| Marketing Features
| Marketing feature names listed for the product
**Field Name:** `productMarketingFeatures`
**Type:** dimension |
| Package Dimensions
| Physical dimensions of the product package (HxWxL, weight)
**Field Name:** `productPackageDimensions`
**Type:** dimension |
| Shippable
| Whether the product can be shipped
**Field Name:** `productShippable`
**Type:** dimension |
| Statement Descriptor
| How the product appears on statements
**Field Name:** `productStatementDescriptor`
**Type:** dimension |
| Tax Code
| Tax code for the product
**Field Name:** `productTaxCode`
**Type:** dimension |
| Unit Label
| Label for product units
**Field Name:** `productUnitLabel`
**Type:** dimension |
| URL
| URL for the product
**Field Name:** `productUrl`
**Type:** dimension |
| Updated
| Timestamp when the product was last updated
**Field Name:** `productUpdated`
**Type:** dimension |
| Product Created At
| When the product was created
**Field Name:** `productCreatedAt`
**Type:** dimension |
### Coupon
| | |
| ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| Coupon ID
| Unique identifier for the coupon
**Field Name:** `couponId`
**Type:** dimension |
| Name
| Name of the coupon
**Field Name:** `couponName`
**Type:** dimension |
| Coupon Created At
| When the coupon was created
**Field Name:** `couponCreatedAt`
**Type:** dimension |
| Duration
| Duration of the coupon (forever, once, repeating)
**Field Name:** `couponDuration`
**Type:** dimension |
| Duration in Months
| Number of months the coupon is valid for (when duration=repeating)
**Field Name:** `couponDurationInMonths`
**Type:** dimension |
| Currency
| Currency of the coupon (for amount-off coupons)
**Field Name:** `couponCurrency`
**Type:** dimension |
| Max Redemptions
| Maximum number of times this coupon can be redeemed
**Field Name:** `couponMaxRedemptions`
**Type:** dimension |
| Live Mode
| Whether the coupon is in live mode
**Field Name:** `couponLiveMode`
**Type:** dimension |
| Valid
| Whether the coupon is still valid
**Field Name:** `couponValid`
**Type:** dimension |
### Promotion Code
| | |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------- |
| Promotion Code ID
| Unique identifier for the promotion code
**Field Name:** `promotionCodeId`
**Type:** dimension |
| Promotion Code
| The code customers enter at checkout
**Field Name:** `promotionCode`
**Type:** dimension |
| Active
| Whether the promotion code is active
**Field Name:** `promotionCodeActive`
**Type:** dimension |
| Promotion Code Created At
| When the promotion code was created
**Field Name:** `promotionCodeCreatedAt`
**Type:** dimension |
| Expires At
| When the promotion code expires
**Field Name:** `promotionCodeExpiredAt`
**Type:** dimension |
| Livemode
| Whether the promotion code is in live mode
**Field Name:** `promotionCodeLivemode`
**Type:** dimension |
### Account
| | |
| ------------------------------ | --------------------------------------------------------------------------------------------------------------------------- |
| Account ID
| Unique identifier for the Stripe account
**Field Name:** `accountId`
**Type:** dimension |
| Annual Revenue
| Annual revenue of the account
**Field Name:** `accountAnnualRevenue`
**Type:** dimension |
| Product Description
| Description of account products/services
**Field Name:** `accountProductDescription`
**Type:** dimension |
| Support Email
| Support email address for the account
**Field Name:** `accountSupportEmail`
**Type:** dimension |
| Account Created At
| Date the Stripe account was created
**Field Name:** `accountCreatedAt`
**Type:** dimension |
| Support Phone
| Support phone number for the account
**Field Name:** `accountSupportPhone`
**Type:** dimension |
| Support URL
| Support website URL for the account
**Field Name:** `accountSupportUrl`
**Type:** dimension |
| Account URL
| Website URL of the account
**Field Name:** `accountUrl`
**Type:** dimension |
| Business Type
| Type of business for the account
**Field Name:** `accountBusinessType`
**Type:** dimension |
| City
| City of the account
**Field Name:** `accountCity`
**Type:** dimension |
| Country
| Country of the account
**Field Name:** `accountCountry`
**Type:** dimension |
| Address Line 1
| First line of account address
**Field Name:** `accountLine1`
**Type:** dimension |
| Address Line 2
| Second line of account address
**Field Name:** `accountLine2`
**Type:** dimension |
| Postal Code
| Postal code of the account
**Field Name:** `accountPostalCode`
**Type:** dimension |
| State
| State or province of the account
**Field Name:** `accountState`
**Type:** dimension |
| Business Name
| Business name of the account
**Field Name:** `accountBusinessName`
**Type:** dimension |
| Company Name
| Company name of the account
**Field Name:** `accountCompanyName`
**Type:** dimension |
| Owners Provided
| Whether account owners information was provided
**Field Name:** `accountOwnersProvided`
**Type:** dimension |
| Phone
| Phone number of the account
**Field Name:** `accountPhone`
**Type:** dimension |
| Structure
| Business structure of the account
**Field Name:** `accountStructure`
**Type:** dimension |
| Default Currency
| Default currency used by the account
**Field Name:** `accountDefaultCurrency`
**Type:** dimension |
| Details Submitted
| Whether account details were submitted
**Field Name:** `accountDetailsSubmitted`
**Type:** dimension |
| Email
| Email address of the account
**Field Name:** `accountEmail`
**Type:** dimension |
| Account Type
| Type of the account
**Field Name:** `accountType`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your Stripe campaigns.
### Most Used
| | |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| MRR
| Detrics internal calculation. Monthly Recurring Revenue: sum of all active subscription plan amounts normalized to monthly. May differ slightly from Stripe dashboard
**Field Name:** `reportMrr`
**Type:** metric |
| ARR
| Detrics internal calculation. Annual Recurring Revenue (MRR x 12)
**Field Name:** `reportArr`
**Type:** metric |
| Active Subscriptions
| Detrics internal calculation. Count of subscriptions with status "active" at each time bucket
**Field Name:** `reportActiveSubscriptions`
**Type:** metric |
| Churn Rate
| Detrics internal calculation. Percentage of subscriptions lost (churned / previous active)
**Field Name:** `reportChurnRate`
**Type:** metric |
| Gross Revenue
| Detrics internal calculation. Total revenue from successful charges in this period
**Field Name:** `reportGrossRevenue`
**Type:** metric |
| Net Revenue
| Detrics internal calculation. Gross revenue minus refunds
**Field Name:** `reportNetRevenue`
**Type:** metric |
| Charge Amount
| Total amount of the charge
**Field Name:** `chargeAmount`
**Type:** metric |
| Total
| Total amount including tax and discounts
**Field Name:** `invoiceTotal`
**Type:** metric |
| Net Amount
| Net amount after fees (amount minus fee)
**Field Name:** `balanceTransactionNet`
**Type:** metric |
| Plan Amount
| Amount for the subscription plan
**Field Name:** `subscriptionItemPlanAmount`
**Type:** metric |
### SaaS Metrics
| | |
| ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| New Subscriptions
| Detrics internal calculation. Count of subscriptions created during this period
**Field Name:** `reportNewSubscriptions`
**Type:** metric |
| New MRR
| Detrics internal calculation. MRR from subscriptions created during this period
**Field Name:** `reportNewMrr`
**Type:** metric |
| Net New MRR
| Detrics internal calculation. New MRR minus Churned MRR. Positive = growth
**Field Name:** `reportNetNewMrr`
**Type:** metric |
| Churned Subscriptions
| Detrics internal calculation. Count of subscriptions that were canceled during this period
**Field Name:** `reportChurnedSubscriptions`
**Type:** metric |
| Churned MRR
| Detrics internal calculation. MRR lost from churned subscriptions during this period
**Field Name:** `reportChurnedMrr`
**Type:** metric |
| MRR Before Discounts
| Detrics internal calculation. MRR before applying any coupon discounts
**Field Name:** `reportMrrBeforeDiscounts`
**Type:** metric |
| Discount Amount
| Detrics internal calculation. Total monthly discount amount across all active discounted subscriptions
**Field Name:** `reportDiscountAmount`
**Type:** metric |
| Discounted Subscriptions
| Detrics internal calculation. Count of active subscriptions with a coupon applied
**Field Name:** `reportDiscountedSubscriptions`
**Type:** metric |
| Active Customers
| Detrics internal calculation. Count of unique customers with at least one active subscription
**Field Name:** `reportActiveCustomers`
**Type:** metric |
| ARPU
| Detrics internal calculation. Average Revenue Per User (MRR / active subscribers)
**Field Name:** `reportArpu`
**Type:** metric |
| Lifetime Value
| Detrics internal calculation. Subscriber Lifetime Value (ARPU / churn rate). Estimates total revenue per subscriber
**Field Name:** `reportLtv`
**Type:** metric |
| Total Refunds
| Detrics internal calculation. Total refund amount in this period
**Field Name:** `reportTotalRefunds`
**Type:** metric |
| Refund Count
| Detrics internal calculation. Number of refunds processed in this period
**Field Name:** `reportRefundCount`
**Type:** metric |
| Payment Success Rate
| Detrics internal calculation. Percentage of successful charges out of total charges
**Field Name:** `reportPaymentSuccessRate`
**Type:** metric |
| Total Payments
| Detrics internal calculation. Total number of charge attempts in this period
**Field Name:** `reportTotalPayments`
**Type:** metric |
### Cohort Retention
| | |
| ----------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Cohort Start Subscribers
| Detrics internal calculation. Number of subscribers when the cohort started
**Field Name:** `cohortStartCount`
**Type:** metric |
| Cohort Start MRR
| Detrics internal calculation. MRR from this cohort when they first subscribed
**Field Name:** `cohortStartMrr`
**Type:** metric |
| Subscriber Retention %
| Detrics internal calculation. Percentage of original subscribers still active at each cohort age
**Field Name:** `cohortSubscriberRetention`
**Type:** metric |
| Revenue Retention %
| Detrics internal calculation. Percentage of original MRR still retained at each cohort age
**Field Name:** `cohortRevenueRetention`
**Type:** metric |
### Subscription
| | |
| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Total Subscriptions
| Total number of subscriptions
**Field Name:** `subscriptionTotalCount`
**Type:** metric |
| Unit Price
| Price per unit for the subscription
**Field Name:** `subscriptionItemPriceUnitAmount`
**Type:** metric |
| Quantity
| Number of units on the subscription
**Field Name:** `subscriptionQuantity`
**Type:** metric |
| Discount Percent Off
| Percentage discount applied to the subscription via coupon
**Field Name:** `subscriptionDiscountPercentOff`
**Type:** metric |
### Invoice
| | |
| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------- |
| Amount Due
| Total amount due on the invoice
**Field Name:** `invoiceAmountDue`
**Type:** metric |
| Amount Paid
| Amount already paid on the invoice
**Field Name:** `invoiceAmountPaid`
**Type:** metric |
| Amount Remaining
| Remaining amount to be paid
**Field Name:** `invoiceAmountRemaining`
**Type:** metric |
| Subtotal
| Subtotal amount before tax and discounts
**Field Name:** `invoiceSubtotal`
**Type:** metric |
| Subtotal Excl. Tax
| Subtotal amount excluding tax
**Field Name:** `invoiceSubtotalExcludingTax`
**Type:** metric |
| Tax
| Tax amount on the invoice
**Field Name:** `invoiceTax`
**Type:** metric |
| Total Discounts
| Total amount of discounts applied
**Field Name:** `invoiceTotalDiscountAmounts`
**Type:** metric |
| Total Excl. Tax
| Total amount excluding tax
**Field Name:** `invoiceTotalExcludingTax`
**Type:** metric |
| Total Pretax Credits
| Total amount of pretax credits
**Field Name:** `invoiceTotalPretaxCreditAmounts`
**Type:** metric |
| Total Tax Amounts
| Total of all tax amounts
**Field Name:** `invoicetotalTaxAmounts`
**Type:** metric |
| Shipping Amount
| Shipping cost on the invoice
**Field Name:** `invoiceAmountShipping`
**Type:** metric |
| Post-Payment Credit Notes
| Amount of post-payment credit notes
**Field Name:** `invoicePostPaymentCreditNotesAmount`
**Type:** metric |
| Pre-Payment Credit Notes
| Amount of pre-payment credit notes
**Field Name:** `invoicePrePaymentCreditNotesAmount`
**Type:** metric |
| Line Item Quantity
| Quantity of items in the invoice line
**Field Name:** `invoiceLineQuantity`
**Type:** metric |
### Charge
| | |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Amount Captured
| Amount captured from the charge (may be less than total if partially captured)
**Field Name:** `chargeAmountCaptured`
**Type:** metric |
| Amount Refunded
| Amount refunded from the charge
**Field Name:** `chargeAmountRefunded`
**Type:** metric |
### Payment
| | |
| -------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Payment Amount
| Total amount of the payment intent
**Field Name:** `paymentAmount`
**Type:** metric |
| Amount Received
| Amount actually received from the payment
**Field Name:** `paymentAmountReceived`
**Type:** metric |
| Application Fee
| Amount of the application fee
**Field Name:** `paymentApplicationFeeAmount`
**Type:** metric |
### Refund
| | |
| ------------------------ | ------------------------------------------------------------------------------- |
| Refund Amount
| Amount refunded
**Field Name:** `refundAmount`
**Type:** metric |
### Balance Transaction
| | |
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| Transaction Amount
| Gross amount of the balance transaction
**Field Name:** `balanceTransactionAmount`
**Type:** metric |
| Fee
| Stripe fee for this transaction
**Field Name:** `balanceTransactionFee`
**Type:** metric |
### Payout
| | |
| ------------------------ | --------------------------------------------------------------------------------------------------------- |
| Payout Amount
| Amount of the payout to your bank account
**Field Name:** `payoutAmount`
**Type:** metric |
### Event
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Event Count
| Count of events (always 1 per event row, useful for aggregation)
**Field Name:** `eventCount`
**Type:** metric |
| Event Charge Amount
| Charge amount in the event (only populated for charge events)
**Field Name:** `eventChargeAmount`
**Type:** metric |
| Event Invoice Total
| Invoice total in the event (only populated for invoice events)
**Field Name:** `eventInvoiceTotal`
**Type:** metric |
| Event Plan Amount
| Subscription plan amount in the event (only populated for subscription events)
**Field Name:** `eventSubscriptionPlanAmount`
**Type:** metric |
| Previous Plan Amount
| Plan amount before the change (for upgrade/downgrade tracking)
**Field Name:** `eventPreviousPlanAmount`
**Type:** metric |
| New Plan Amount
| Plan amount after the change (for upgrade/downgrade tracking)
**Field Name:** `eventNewPlanAmount`
**Type:** metric |
### Customer
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| Customer Balance
| Current balance of the customer (in account currency)
**Field Name:** `customerBalance`
**Type:** metric |
### Coupon
| | |
| ------------------------- | -------------------------------------------------------------------------------------------------------------- |
| Times Redeemed
| Number of times the coupon was redeemed
**Field Name:** `couponTimesRedeemed`
**Type:** metric |
| Percent Off
| Percentage discount offered by the coupon
**Field Name:** `couponPercentOff`
**Type:** metric |
| Amount Off
| Fixed amount discount offered by the coupon
**Field Name:** `couponAmountOff`
**Type:** metric |
### Promotion Code
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- |
| Times Redeemed
| Number of times the promotion code was redeemed
**Field Name:** `promotionCodeTimesReedemed`
**Type:** metric |
| Minimum Amount
| Minimum order amount required to use this promotion code
**Field Name:** `promotionCodeMinimumAmountRestriction`
**Type:** metric |
| Min Amount Currency
| Currency of the minimum amount restriction
**Field Name:** `promotionCodeMinimumAmountCurrency`
**Type:** metric |
| Max Redemptions
| Maximum number of times this promotion code can be redeemed
**Field Name:** `promotionCodeMaxRedemption`
**Type:** metric |
***
## Related
Browse all platforms
Shopify metrics & dimensions
WooCommerce metrics & dimensions
TiendaNube metrics & dimensions
# TiendaNube Metrics & Dimensions
Source: https://support.detrics.io/data-source/tiendanube/fields
Complete reference for TiendaNube store dimensions and metrics
**Last updated:** August 6, 2026
157 dimensions
20 metrics
This reference covers all available dimensions and metrics for TiendaNube data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your TiendaNube data.
### Store
| | |
| --------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| Store ID
| Unique identifier for the store
**Field Name:** `storeId`
**Type:** dimension |
| Store Name (ES)
| Name of the store in Spanish
**Field Name:** `storeNameEs`
**Type:** dimension |
| Store Name (EN)
| Name of the store in English
**Field Name:** `storeNameEn`
**Type:** dimension |
| Store Name (PR)
| Name of the store in Portuguese
**Field Name:** `storeNamePr`
**Type:** dimension |
| Store Description (ES)
| Description of the store in Spanish
**Field Name:** `storeDescriptionEs`
**Type:** dimension |
| Store Description (EN)
| Description of the store in English
**Field Name:** `storeDescriptionEn`
**Type:** dimension |
| Store Description (PR)
| Description of the store in Portuguese
**Field Name:** `storeDescriptionPr`
**Type:** dimension |
| Store Type
| Type of the store
**Field Name:** `storeType`
**Type:** dimension |
| Store Email
| Email address of the store
**Field Name:** `storeEmail`
**Type:** dimension |
| Store Country
| Country of the store
**Field Name:** `storeCountry`
**Type:** dimension |
| Store Main Currency
| Main currency of the store
**Field Name:** `storeMainCurrency`
**Type:** dimension |
| Store Main Language
| Main language of the store
**Field Name:** `storeMainLanguage`
**Type:** dimension |
| Store Original Domain
| Original domain of the store
**Field Name:** `storeOriginalDomain`
**Type:** dimension |
| Store URL
| URL of the store
**Field Name:** `storeUrl`
**Type:** dimension |
| Store Creation Date
| Creation date of the store
**Field Name:** `storeCreatedAt`
**Type:** dimension |
| Store Facebook
| Facebook URL of the store
**Field Name:** `storeFacebook`
**Type:** dimension |
| Store Twitter
| Twitter URL of the store
**Field Name:** `storeTwitter`
**Type:** dimension |
| Store Instagram
| Instagram URL of the store
**Field Name:** `storeInstagram`
**Type:** dimension |
| Store Pinterest
| Pinterest URL of the store
**Field Name:** `storePinterest`
**Type:** dimension |
### Order
| | |
| --------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Order ID
| Unique identifier for the order
**Field Name:** `orderId`
**Type:** dimension |
| Order Token
| Order authentication token
**Field Name:** `orderToken`
**Type:** dimension |
| Order Number
| Order number for reference
**Field Name:** `orderNumber`
**Type:** dimension |
| Order Status
| Status of the order
**Field Name:** `orderStatus`
**Type:** dimension |
| Order Currency
| Currency of the order
**Field Name:** `orderCurrency`
**Type:** dimension |
| Order Language
| Language of the order
**Field Name:** `orderLanguage`
**Type:** dimension |
| Order Origin
| Origin of the order (e.g., website, marketplace)
**Field Name:** `orderOrderOrigin`
**Type:** dimension |
| Order Storefront
| Platform where the order was placed (mobile, web)
**Field Name:** `orderStorefront`
**Type:** dimension |
| Order Checkout Enabled
| Whether checkout is enabled for this order
**Field Name:** `orderCheckoutEnabled`
**Type:** dimension |
| Order Has Shippable Products
| Whether the order contains shippable products
**Field Name:** `orderHasShippableProducts`
**Type:** dimension |
| Order Created At
| Creation date of the order
**Field Name:** `orderCreatedAt`
**Type:** dimension |
| Order Updated At
| Last updated date of the order
**Field Name:** `orderUpdatedAt`
**Type:** dimension |
| Order Completed At
| Time when the order was completed
**Field Name:** `orderCompletedAt`
**Type:** dimension |
| Order Closed At
| Time when the order was closed
**Field Name:** `orderClosedAt`
**Type:** dimension |
| Order Paid At
| Time when the order was paid
**Field Name:** `orderPaidAt`
**Type:** dimension |
| Order Shipped At
| Time when the order was shipped
**Field Name:** `orderShippedAt`
**Type:** dimension |
| Order Contact Email
| Contact email for the order
**Field Name:** `orderContactEmail`
**Type:** dimension |
| Order Contact Name
| Contact name for the order
**Field Name:** `orderContactName`
**Type:** dimension |
| Order Contact Phone
| Contact phone number for the order
**Field Name:** `orderContactPhone`
**Type:** dimension |
| Order Contact Identification
| Contact identification number for the order
**Field Name:** `orderContactIdentification`
**Type:** dimension |
| Order Next Action
| Next action required for the order
**Field Name:** `orderNextAction`
**Type:** dimension |
| Order Note
| Additional notes for the order
**Field Name:** `orderNote`
**Type:** dimension |
| Order Owner Note
| Note for the order owner
**Field Name:** `orderOwnerNote`
**Type:** dimension |
| Order Cancel Reason
| Reason for order cancellation
**Field Name:** `orderCancelReason`
**Type:** dimension |
### Order Billing
| | |
| -------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order Billing Name
| Name of the billing contact for the order
**Field Name:** `orderBillingName`
**Type:** dimension |
| Order Billing Phone
| Phone number of the billing contact for the order
**Field Name:** `orderBillingPhone`
**Type:** dimension |
| Order Billing Address
| Billing address of the order
**Field Name:** `orderBillingAddress`
**Type:** dimension |
| Order Billing Number
| Billing number of the order
**Field Name:** `orderBillingNumber`
**Type:** dimension |
| Order Billing Floor
| Floor of the billing address for the order
**Field Name:** `orderBillingFloor`
**Type:** dimension |
| Order Billing Locality
| Locality of the billing address for the order
**Field Name:** `orderBillingLocality`
**Type:** dimension |
| Order Billing City
| City of the billing address for the order
**Field Name:** `orderBillingCity`
**Type:** dimension |
| Order Billing Province
| Province of the billing address for the order
**Field Name:** `orderBillingProvince`
**Type:** dimension |
| Order Billing Zip Code
| Zip code of the billing address for the order
**Field Name:** `orderBillingZipCode`
**Type:** dimension |
| Order Billing Country
| Country of the billing address for the order
**Field Name:** `orderBillingCountry`
**Type:** dimension |
| Order Same Billing and Shipping Address
| Indicates if the billing and shipping addresses are the same
**Field Name:** `orderSameBillingShippingAddress`
**Type:** dimension |
### Order Shipping
| | |
| ------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------- |
| Order Shipping
| Shipping method for the order
**Field Name:** `orderShipping`
**Type:** dimension |
| Order Shipping Option
| Shipping option selected for the order
**Field Name:** `orderShippingOption`
**Type:** dimension |
| Order Shipping Option Code
| Code of the selected shipping option
**Field Name:** `orderShippingOptionCode`
**Type:** dimension |
| Order Shipping Option Reference
| Reference code for the shipping option
**Field Name:** `orderShippingOptionReference`
**Type:** dimension |
| Order Shipping Status
| Status of the shipping for the order
**Field Name:** `orderShippingStatus`
**Type:** dimension |
| Order Shipping Min Days
| Minimum shipping days
**Field Name:** `orderShippingMinDays`
**Type:** dimension |
| Order Shipping Max Days
| Maximum shipping days
**Field Name:** `orderShippingMaxDays`
**Type:** dimension |
| Order Shipping Pickup Type
| Type of shipping pickup (ship/pickup)
**Field Name:** `orderShippingPickupType`
**Type:** dimension |
| Order Shipping Pickup Details
| Details about pickup location and schedule
**Field Name:** `orderShippingPickupDetails`
**Type:** dimension |
| Order Shipping Carrier Name
| Name of the shipping carrier
**Field Name:** `orderShippingCarrierName`
**Type:** dimension |
| Order Shipping Tracking Number
| Tracking number of the shipping
**Field Name:** `orderShippingTrackingNumber`
**Type:** dimension |
| Order Tracking URL
| Tracking URL for the order shipment
**Field Name:** `orderTrackingUrl`
**Type:** dimension |
| Order Shipping Address
| Shipping address of the order
**Field Name:** `orderShippingAddress`
**Type:** dimension |
| Order Shipping Number
| Number of the shipping address
**Field Name:** `orderShippingNumber`
**Type:** dimension |
| Order Shipping Floor
| Floor of the shipping address
**Field Name:** `orderShippingFloor`
**Type:** dimension |
| Order Shipping Locality
| Locality of the shipping address for the order
**Field Name:** `orderShippingLocality`
**Type:** dimension |
| Order Shipping City
| City of the shipping address for the order
**Field Name:** `orderShippingCity`
**Type:** dimension |
| Order Shipping Province
| Province of the shipping address for the order
**Field Name:** `orderShippingProvince`
**Type:** dimension |
| Order Shipping Zipcode
| Zip code of the shipping address
**Field Name:** `orderShippingZipcode`
**Type:** dimension |
| Order Shipping Country
| Country of the shipping address for the order
**Field Name:** `orderShippingCountry`
**Type:** dimension |
| Order Shipping Phone
| Phone number for the shipping address
**Field Name:** `orderShippingPhone`
**Type:** dimension |
### Order Payment
| | |
| -------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| Order Payment Method
| Payment method used for the order
**Field Name:** `orderPaymentMethod`
**Type:** dimension |
| Order Payment Credit Card Company
| Credit card company used for the order payment
**Field Name:** `orderPaymentCreditCardCompany`
**Type:** dimension |
| Order Payment Installments
| Number of payment installments
**Field Name:** `orderPaymentInstallments`
**Type:** dimension |
| Order Payment Status
| Current payment status of the order
**Field Name:** `orderPaymentStatus`
**Type:** dimension |
| Order Gateway
| Payment gateway used
**Field Name:** `orderGateway`
**Type:** dimension |
| Order Gateway ID
| Payment gateway transaction ID
**Field Name:** `orderGatewayId`
**Type:** dimension |
| Order Gateway Name
| Name of the payment gateway
**Field Name:** `orderGatewayName`
**Type:** dimension |
| Order Gateway Link
| Link to payment gateway transaction
**Field Name:** `orderGatewayLink`
**Type:** dimension |
### Order Customer
| | |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Customer ID
| Unique identifier for the customer
**Field Name:** `orderCustomerId`
**Type:** dimension |
| Customer Name
| Name of the customer
**Field Name:** `orderCustomerName`
**Type:** dimension |
| Customer Email
| Email address of the customer
**Field Name:** `orderCustomerEmail`
**Type:** dimension |
| Customer Phone
| Phone number of the customer
**Field Name:** `orderCustomerPhone`
**Type:** dimension |
| Customer Identification
| Identification number of the customer
**Field Name:** `orderCustomerIdentification`
**Type:** dimension |
| Customer Note
| Note of the customer
**Field Name:** `orderCustomerNote`
**Type:** dimension |
### Traffic Source
| | |
| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| Customer Visit Created At
| Creation timestamp of the customer visit
**Field Name:** `orderCustomerVisitCreatedAt`
**Type:** dimension |
| Customer Visit Landing Page
| Landing page visited by the customer
**Field Name:** `orderCustomerVisitLandingPage`
**Type:** dimension |
| Order Landing URL
| Landing URL where customer came from
**Field Name:** `orderLandingUrl`
**Type:** dimension |
| UTM Source
| Source of the UTM campaign
**Field Name:** `orderUtmSource`
**Type:** dimension |
| UTM Campaign
| Campaign name in UTM parameters
**Field Name:** `orderUtmCampaign`
**Type:** dimension |
| UTM Medium
| Medium in UTM parameters
**Field Name:** `orderUtmMedium`
**Type:** dimension |
| UTM Content
| Content in UTM parameters
**Field Name:** `orderUtmContent`
**Type:** dimension |
| UTM Term
| Term in UTM parameters
**Field Name:** `orderUtmTerm`
**Type:** dimension |
### Client Details
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Client Browser IP
| IP address of the client browser
**Field Name:** `orderClientBrowserIp`
**Type:** dimension |
| Client User Agent
| User agent string of the client browser
**Field Name:** `orderClientUserAgent`
**Type:** dimension |
### Ordered Product
| | |
| ------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------- |
| Ordered Product ID
| Unique identifier for the product in the order
**Field Name:** `productOrderId`
**Type:** dimension |
| Ordered Product SKU
| SKU (Stock Keeping Unit) of the product in the order
**Field Name:** `productOrderSku`
**Type:** dimension |
| Ordered Product Name
| Name of the product in the order
**Field Name:** `productOrderName`
**Type:** dimension |
| Ordered Product Name Without Variants
| Name of the product without variants in the order
**Field Name:** `productOrderName_without_variants`
**Type:** dimension |
| Ordered Product Image URL
| Image URL of the product in the order
**Field Name:** `productOrderImageUrl`
**Type:** dimension |
| Ordered Product Barcode
| Barcode of the product in the order
**Field Name:** `productOrderBarcode`
**Type:** dimension |
| Ordered Product Variant ID
| Variant ID of the product in the order
**Field Name:** `productOrderVariantId`
**Type:** dimension |
| Ordered Product Variant Values
| Variant values of the product (size, color, etc.)
**Field Name:** `productOrderVariantValues`
**Type:** dimension |
| Ordered Product Weight
| Weight of the product in the order
**Field Name:** `productOrderWeight`
**Type:** dimension |
| Ordered Product Width
| Width of the product in the order
**Field Name:** `productOrderWidth`
**Type:** dimension |
| Ordered Product Height
| Height of the product in the order
**Field Name:** `productOrderHeight`
**Type:** dimension |
| Ordered Product Depth
| Depth of the product in the order
**Field Name:** `productOrderDepth`
**Type:** dimension |
| Ordered Product Free Shipping
| Indicates if the product qualifies for free shipping
**Field Name:** `productOrderFree_shipping`
**Type:** dimension |
| Ordered Product Has Promotional Price
| Whether the product has promotional pricing
**Field Name:** `productOrderHasPromotionalPrice`
**Type:** dimension |
### Inventory Product
| | |
| ------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Inventory Product ID
| Unique identifier for the product
**Field Name:** `productId`
**Type:** dimension |
| Inventory Product Name (ES)
| Name of the product in Spanish
**Field Name:** `productNameEs`
**Type:** dimension |
| Inventory Product Name (EN)
| Name of the product in English
**Field Name:** `productNameEn`
**Type:** dimension |
| Inventory Product Name (PR)
| Name of the product in Portuguese
**Field Name:** `productNamePr`
**Type:** dimension |
| Inventory Product Description (ES)
| Description of the product in Spanish
**Field Name:** `productDescriptionEs`
**Type:** dimension |
| Inventory Product Description (EN)
| Description of the product in English
**Field Name:** `productDescriptionEn`
**Type:** dimension |
| Inventory Product Description (PR)
| Description of the product in Portuguese
**Field Name:** `productDescriptionPr`
**Type:** dimension |
| Inventory Product is Published
| Published status of the product
**Field Name:** `productPublished`
**Type:** dimension |
| Inventory Product Free Shipping
| Indicates if the product has free shipping
**Field Name:** `productFreeShipping`
**Type:** dimension |
| Inventory Product Requires Shipping
| Indicates if the product requires shipping
**Field Name:** `productRequiresShipping`
**Type:** dimension |
| Inventory Product Video URL
| URL of the product video
**Field Name:** `productVideoUrl`
**Type:** dimension |
| Inventory Product Canonical URL
| Canonical URL of the product
**Field Name:** `productCanonicalUrl`
**Type:** dimension |
| Inventory Product Created At
| Product creation date
**Field Name:** `productCreatedAt`
**Type:** dimension |
| Inventory Product Updated At
| Product last updated date
**Field Name:** `productUpdatedAt`
**Type:** dimension |
| Inventory Product Tags
| Tags associated with the product
**Field Name:** `productTags`
**Type:** dimension |
| Inventory Product Images
| Images associated with the product
**Field Name:** `productImages`
**Type:** dimension |
| Inventory Product Handle (ES)
| URL-friendly slug for the product in Spanish
**Field Name:** `productHandleEs`
**Type:** dimension |
| Inventory Product Handle (EN)
| URL-friendly slug for the product in English
**Field Name:** `productHandleEn`
**Type:** dimension |
| Inventory Product Handle (PR)
| URL-friendly slug for the product in Portuguese
**Field Name:** `productHandlePr`
**Type:** dimension |
| Inventory Product Brand
| Brand name of the product
**Field Name:** `productBrand`
**Type:** dimension |
| Inventory Product SEO Title (ES)
| SEO friendly title for the product in Spanish (up to 70 characters)
**Field Name:** `productSeoTitleEs`
**Type:** dimension |
| Inventory Product SEO Title (EN)
| SEO friendly title for the product in English (up to 70 characters)
**Field Name:** `productSeoTitleEn`
**Type:** dimension |
| Inventory Product SEO Title (PR)
| SEO friendly title for the product in Portuguese (up to 70 characters)
**Field Name:** `productSeoTitlePr`
**Type:** dimension |
| Inventory Product SEO Description (ES)
| SEO friendly description for the product in Spanish (up to 320 characters)
**Field Name:** `productSeoDescriptionEs`
**Type:** dimension |
| Inventory Product SEO Description (EN)
| SEO friendly description for the product in English (up to 320 characters)
**Field Name:** `productSeoDescriptionEn`
**Type:** dimension |
| Inventory Product SEO Description (PR)
| SEO friendly description for the product in Portuguese (up to 320 characters)
**Field Name:** `productSeoDescriptionPr`
**Type:** dimension |
| Inventory Product Attributes
| Attribute names that define variants (e.g., "Color, Size"). Maximum 3 attributes.
**Field Name:** `productAttributes`
**Type:** dimension |
### Inventory Product Variant
| | |
| ----------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| Inventory Product Variant ID
| Unique identifier for the product variant
**Field Name:** `productVariantId`
**Type:** dimension |
| Inventory Product Variant Position
| Position of the product variant
**Field Name:** `productVariantPosition`
**Type:** dimension |
| Inventory Product Variant SKU
| SKU of the product variant
**Field Name:** `productVariantSku`
**Type:** dimension |
| Inventory Product Variant Weight
| Weight of the product variant
**Field Name:** `productVariantWeight`
**Type:** dimension |
| Inventory Product Variant Height
| Height of the product variant
**Field Name:** `productVariantHeight`
**Type:** dimension |
| Inventory Product Variant Width
| Width of the product variant
**Field Name:** `productVariantWidth`
**Type:** dimension |
| Inventory Product Variant Depth
| Depth of the product variant
**Field Name:** `productVariantDepth`
**Type:** dimension |
| Inventory Product Variant Gender
| Gender classification for the product variant
**Field Name:** `productVariantGender`
**Type:** dimension |
| Inventory Product Variant Age Group
| Age group classification for the product variant
**Field Name:** `productVariantAgeGroup`
**Type:** dimension |
| Inventory Product Variant Value (ES)
| Product variant value in Spanish
**Field Name:** `productVariantValueEs`
**Type:** dimension |
| Inventory Product Variant Value (EN)
| Product variant value in English
**Field Name:** `productVariantValueEn`
**Type:** dimension |
| Inventory Product Variant Value (PR)
| Product variant value in Portuguese
**Field Name:** `productVariantValuePr`
**Type:** dimension |
| Inventory Product Variant Barcode
| GTIN, EAN, ISBN, or similar barcode identifier
**Field Name:** `productVariantBarcode`
**Type:** dimension |
| Inventory Product Variant MPN
| Manufacturer Part Number
**Field Name:** `productVariantMpn`
**Type:** dimension |
| Inventory Product Variant Stock Management
| Whether stock is tracked for this variant
**Field Name:** `productVariantStockManagement`
**Type:** dimension |
| Inventory Product Variant Created At
| Date and time when the variant was created
**Field Name:** `productVariantCreatedAt`
**Type:** dimension |
| Inventory Product Variant Updated At
| Date and time when the variant was last updated
**Field Name:** `productVariantUpdatedAt`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your TiendaNube campaigns.
### Store
| | |
| ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------- |
| Order Count
| Total number of orders for the store in the selected date range.
**Field Name:** `storeOrderCount`
**Type:** metric |
### Order
| | |
| --------------------------------- | ---------------------------------------------------------------------------------------------------------- |
| Order Total
| Total price of the order
**Field Name:** `orderTotal`
**Type:** metric |
| Order Total USD
| Total price of the order in USD
**Field Name:** `orderTotalUsd`
**Type:** metric |
| Order Total Paid
| Total amount actually paid for the order
**Field Name:** `orderTotalPaid`
**Type:** metric |
| Order Subtotal
| Subtotal of the order
**Field Name:** `orderSubtotal`
**Type:** metric |
| Order Discount
| Total discount applied to the order
**Field Name:** `orderDiscount`
**Type:** metric |
| Order Discount Coupon
| Discount from coupon codes
**Field Name:** `orderDiscountCoupon`
**Type:** metric |
| Order Discount Gateway
| Discount from payment gateway
**Field Name:** `orderDiscountGateway`
**Type:** metric |
| Order Weight
| Total weight of the order
**Field Name:** `orderWeight`
**Type:** metric |
| Order Total Products
| Total number of products in an order
**Field Name:** `orderTotalProducts`
**Type:** metric |
### Order Shipping
| | |
| --------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| Order Shipping Cost Owner
| Shipping cost paid by store owner
**Field Name:** `orderShippingCostOwner`
**Type:** metric |
| Order Shipping Cost Customer
| Shipping cost paid by customer
**Field Name:** `orderShippingCostCustomer`
**Type:** metric |
### Ordered Product
| | |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Ordered Product Price
| Price of the product in the order
**Field Name:** `productOrderPrice`
**Type:** metric |
| Ordered Product Compare At Price
| Compare at price (original price) of the product
**Field Name:** `productOrderCompareAtPrice`
**Type:** metric |
| Ordered Product Cost
| Cost of the product in the order
**Field Name:** `productOrderCost`
**Type:** metric |
| Ordered Product Quantity
| Quantity of the product in the order
**Field Name:** `productOrderQuantity`
**Type:** metric |
### Inventory Product Variant
| | |
| ------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------- |
| Inventory Product Variant Price
| Price of the product variant
**Field Name:** `productVariantPrice`
**Type:** metric |
| Inventory Product Variant Promotional Price
| Sale price displayed with original price crossed out
**Field Name:** `productVariantPromotionalPrice`
**Type:** metric |
| Inventory Product Variant Cost
| Cost of the product variant
**Field Name:** `productVariantCost`
**Type:** metric |
| Inventory Product Variant Stock
| Stock quantity of the product variant
**Field Name:** `productVariantStock`
**Type:** metric |
***
## Related
Browse all platforms
Shopify metrics & dimensions
WooCommerce metrics & dimensions
Stripe metrics & dimensions
# TikTok Ads Metrics & Dimensions
Source: https://support.detrics.io/data-source/tiktok-ads/fields
Complete reference for TikTok Ads dimensions and metrics
**Last updated:** August 6, 2026
82 dimensions
711 metrics
This reference covers all available dimensions and metrics for TikTok Ads data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your TikTok Ads data.
### Most Used
| | |
| -------------------------- | ----------------------------------------------------------------------------------------------------------- |
| Advertiser ID
| Advertiser Account Unique Identifier.
**Field Name:** `advertiser_id`
**Type:** dimension |
| Advertiser Name
| Advertiser Account Unique Identifier.
**Field Name:** `advertiser_name`
**Type:** dimension |
| Currency
| Advertiser's Currency Code.
**Field Name:** `currency`
**Type:** dimension |
| Campaign ID
| Campaign Unique Identifier
**Field Name:** `campaign_id`
**Type:** dimension |
| Campaign Name
| Campaign Name
**Field Name:** `campaign_name`
**Type:** dimension |
| Ad group ID
| Ad Group Unique Identifier
**Field Name:** `adgroup_id`
**Type:** dimension |
| Ad group Name
| Ad Group Name
**Field Name:** `adgroup_name`
**Type:** dimension |
| Ad ID
| Ad Unique Identifier
**Field Name:** `ad_id`
**Type:** dimension |
| Ad Name
| Ad Name
**Field Name:** `ad_name`
**Type:** dimension |
### Campaign
| | |
| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign Budget Mode
|
**Field Name:** `campaign_budget_mode`
**Type:** dimension |
| Campaign Objective Type
|
**Field Name:** `campaign_objective_type`
**Type:** dimension |
| Campaign Budget
|
**Field Name:** `campaign_budget`
**Type:** dimension |
| Campaign Objective
|
**Field Name:** `campaign_objective`
**Type:** dimension |
| Campaign Create Time
|
**Field Name:** `campaign_create_time`
**Type:** dimension |
| Campaign Modify Time
|
**Field Name:** `campaign_modify_time`
**Type:** dimension |
| Campaign Type
|
**Field Name:** `campaign_type`
**Type:** dimension |
| Campaign Operation Status
|
**Field Name:** `campaign_operation_status`
**Type:** dimension |
| Campaign Secondary Status
| The delivery status of the campaign, e.g. CAMPAIGN\_STATUS\_ENABLE, CAMPAIGN\_STATUS\_DISABLE, CAMPAIGN\_STATUS\_BUDGET\_EXCEED.
**Field Name:** `campaign_secondary_status`
**Type:** dimension |
| Campaign is New Structure
|
**Field Name:** `campaign_is_new_structure`
**Type:** dimension |
| Campaign Automation Type
| The automation type of the campaign.
**Field Name:** `campaign_automation_type`
**Type:** dimension |
### Audience
| | |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Country Code
| Group Metrics by Country
**Field Name:** `country_code`
**Type:** dimension |
| Province
| Group metrics by province/region (sub-country). Must be used on its own — cannot be combined with other audience breakdowns.
**Field Name:** `province_name`
**Type:** dimension |
| Province ID
| Group metrics by TikTok's numeric province/region ID. Must be used on its own — cannot be combined with other audience breakdowns.
**Field Name:** `province_id`
**Type:** dimension |
| Gender
| Group Metrics by Gender
**Field Name:** `gender`
**Type:** dimension |
| Age
| Group Metrics by Age
**Field Name:** `age`
**Type:** dimension |
| Audience network
| Group Metrics by Audience Network
**Field Name:** `ac`
**Type:** dimension |
| Device
| Group metrics by device platform (Android, iPhone, iPad, Unknown).
**Field Name:** `platform`
**Type:** dimension |
### Ad Group
| | |
| ------------------------------------------------- | -------------------------------------------------------------------------------------------- |
| Ad Group Schedule Start Time
|
**Field Name:** `adgroup_schedule_start_time`
**Type:** dimension |
| Ad Group Schedule End Time
|
**Field Name:** `adgroup_schedule_end_time`
**Type:** dimension |
| Ad Group Scheduled Budget
|
**Field Name:** `adgroup_scheduled_budget`
**Type:** dimension |
| Ad Group Secondary Status
|
**Field Name:** `adgroup_secondary_status`
**Type:** dimension |
| Ad Group Placements
|
**Field Name:** `adgroup_placements`
**Type:** dimension |
| Ad Group Bid Type
|
**Field Name:** `adgroup_bid_type`
**Type:** dimension |
| Ad Group Schedule Type
|
**Field Name:** `adgroup_schedule_type`
**Type:** dimension |
| Ad Group Create Time
|
**Field Name:** `adgroup_create_time`
**Type:** dimension |
| Ad Group Is Smart Performance Campaign
|
**Field Name:** `adgroup_is_smart_performance_campaign`
**Type:** dimension |
| Ad Group Budget
|
**Field Name:** `adgroup_budget`
**Type:** dimension |
| Ad Group Operation Status
|
**Field Name:** `adgroup_operation_status`
**Type:** dimension |
| Ad Group Optimization Event
|
**Field Name:** `adgroup_optimization_event`
**Type:** dimension |
| Ad Group Bid Display Mode
|
**Field Name:** `adgroup_bid_display_mode`
**Type:** dimension |
| Ad Group Optimization Goal
|
**Field Name:** `adgroup_optimization_goal`
**Type:** dimension |
| Ad Group Billing Event
|
**Field Name:** `adgroup_billing_event`
**Type:** dimension |
| Ad Group Budget Mode
|
**Field Name:** `adgroup_budget_mode`
**Type:** dimension |
| Ad Group Promotion Type
|
**Field Name:** `adgroup_promotion_type`
**Type:** dimension |
| Ad Group Modify Time
|
**Field Name:** `adgroup_modify_time`
**Type:** dimension |
### Ad
| | |
| ---------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Call To Action
|
**Field Name:** `ad_call_to_action`
**Type:** dimension |
| Ad Landing Page Url
|
**Field Name:** `ad_landing_page_url`
**Type:** dimension |
| Ad Identity Type
|
**Field Name:** `ad_identity_type`
**Type:** dimension |
| Ad App Name
|
**Field Name:** `ad_app_name`
**Type:** dimension |
| Ad Modify Time
|
**Field Name:** `ad_modify_time`
**Type:** dimension |
| Ad Promotional Music Disabled
|
**Field Name:** `ad_promotional_music_disabled`
**Type:** dimension |
| Ad Viewability Vast Url
|
**Field Name:** `ad_viewability_vast_url`
**Type:** dimension |
| Ad Format
|
**Field Name:** `ad_ad_format`
**Type:** dimension |
| Ad Brand Safety Vast Url
|
**Field Name:** `ad_brand_safety_vast_url`
**Type:** dimension |
| Ad Operation Status
|
**Field Name:** `ad_operation_status`
**Type:** dimension |
| Ad Is Aco
|
**Field Name:** `ad_is_aco`
**Type:** dimension |
| Ad Is New Structure
|
**Field Name:** `ad_is_new_structure`
**Type:** dimension |
| Ad Display Name
|
**Field Name:** `ad_display_name`
**Type:** dimension |
| Ad Create Time
|
**Field Name:** `ad_create_time`
**Type:** dimension |
| Ad Click Tracking Url
|
**Field Name:** `ad_click_tracking_url`
**Type:** dimension |
| Ad Playable Url
|
**Field Name:** `ad_playable_url`
**Type:** dimension |
| Ad Secondary Status
|
**Field Name:** `ad_secondary_status`
**Type:** dimension |
| Ad Impression Tracking Url
|
**Field Name:** `ad_impression_tracking_url`
**Type:** dimension |
| Ad Deeplink Type
|
**Field Name:** `ad_deeplink_type`
**Type:** dimension |
| Ad Avatar Icon Web Uri
|
**Field Name:** `ad_avatar_icon_web_uri`
**Type:** dimension |
| Ad Fallback Type
|
**Field Name:** `ad_fallback_type`
**Type:** dimension |
| Ad Profile Image Url
|
**Field Name:** `ad_profile_image_url`
**Type:** dimension |
| Ad Deeplink
|
**Field Name:** `ad_deeplink`
**Type:** dimension |
| Ad Optimization Event
|
**Field Name:** `ad_optimization_event`
**Type:** dimension |
| Ad Vast Moat Enabled
|
**Field Name:** `ad_vast_moat_enabled`
**Type:** dimension |
| Ad Text
| The text or caption displayed in the ad.
**Field Name:** `ad_text`
**Type:** dimension |
| TikTok Item ID
| The TikTok item ID of the organic post used for Spark Ads. Spark Ads allow advertisers to boost organic TikTok posts as ads.
**Field Name:** `ad_tiktok_item_id`
**Type:** dimension |
### Ad Creative
| | |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| Creative Thumbnail URL
| URL of the ad video thumbnail.
**Field Name:** `creative_thumbnail_url`
**Type:** dimension |
| Creative Preview URL
| URL of the ad video preview.
**Field Name:** `creative_preview_url`
**Type:** dimension |
| Creative Format
| Format of the ad video.
**Field Name:** `creative_format`
**Type:** dimension |
| Creative Thumbnail
| Ad video thumbnail image.
**Field Name:** `creative_thumbnail`
**Type:** dimension |
| Creative File Name
| File name of the creative asset.
**Field Name:** `creative_file_name`
**Type:** dimension |
| Creative Preview URL Expire Time
| Expiration time for the creative preview URL.
**Field Name:** `creative_preview_url_expire_time`
**Type:** dimension |
| Creative Duration
| Duration of the creative asset.
**Field Name:** `creative_duration`
**Type:** dimension |
### Ad Detail
| | |
| ---------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Type
| You can use this dimension to distinguish between Search Ads and non-Search Ads.
**Field Name:** `ad_type`
**Type:** dimension |
| Search Term
| Group Metrics by Search Term
**Field Name:** `search_terms`
**Type:** dimension |
### Placement
| | |
| -------------------- | ---------------------------------------------------------------- |
| Placement
|
**Field Name:** `placement`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your TikTok Ads campaigns.
### Most Used
| | |
| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Cost
| The estimated total amount of money you've spent on your campaign, ad group or ad during its schedule.
**Field Name:** `spend`
**Type:** metric |
| Impressions
| The number of times your ads were on screen.
**Field Name:** `impressions`
**Type:** metric |
| Clicks
| The number of clicks on your ads that led to advertiser-specified destinations.
**Field Name:** `clicks`
**Type:** metric |
| Reach
| The number of unique users who saw your ads at least once. This metric is estimated.
**Field Name:** `reach`
**Type:** metric |
### Results
| | |
| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Result
| The number of times your ad achieved an outcome, based on the optimization goal you selected. Note: this metric is not available at the campaign level. Use it at the advertiser, ad group, or ad level.
**Field Name:** `result`
**Type:** metric |
| Conversion
| The number of times your ad achieved an outcome, based on the secondary goal you selected.
**Field Name:** `conversion`
**Type:** metric |
| Cost per conversion
|
**Field Name:** `cost_per_conversion`
**Type:** metric |
| Conversion rate (CVR, clicks)
|
**Field Name:** `conversion_rate`
**Type:** metric |
| Conversion rate (CVR)
|
**Field Name:** `conversion_rate_v2`
**Type:** metric |
| Real-time conversions
|
**Field Name:** `real_time_conversion`
**Type:** metric |
| Real-time cost per conversion
|
**Field Name:** `real_time_cost_per_conversion`
**Type:** metric |
| Real-time conversion rate (CVR, clicks)
|
**Field Name:** `real_time_conversion_rate`
**Type:** metric |
| Real-time conversion rate (CVR)
|
**Field Name:** `real_time_conversion_rate_v2`
**Type:** metric |
| Cost per result
| The average cost for each result. Not available at the campaign level.
**Field Name:** `cost_per_result`
**Type:** metric |
| Result rate
| The percentage of results over impressions. Not available at the campaign level.
**Field Name:** `result_rate`
**Type:** metric |
| Real-time results
|
**Field Name:** `real_time_result`
**Type:** metric |
| Real-time cost per result
|
**Field Name:** `real_time_cost_per_result`
**Type:** metric |
| Real-time result rate
|
**Field Name:** `real_time_result_rate`
**Type:** metric |
| Secondary goal result
|
**Field Name:** `secondary_goal_result`
**Type:** metric |
| Cost per secondary goal result
|
**Field Name:** `cost_per_secondary_goal_result`
**Type:** metric |
| Secondary goal result rate
|
**Field Name:** `secondary_goal_result_rate`
**Type:** metric |
| Landing Page View
| The number of landing page view events from your ads.
**Field Name:** `total_landing_page_view`
**Type:** metric |
### Performance
| | |
| -------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| CPC
| The average amount of money you've spent on a click (destination).
**Field Name:** `cpc`
**Type:** metric |
| CPM
| The average amount of money you've spent per 1,000 impressions.
**Field Name:** `cpm`
**Type:** metric |
| CTR
| The percentage of times people saw your ad and performed a click (destination).
**Field Name:** `ctr`
**Type:** metric |
### Reach
| | |
| ----------------------------------------------------------- | ------------------------------------------------------------------------- |
| Gross Impressions (Includes Invalid Impressions)
|
**Field Name:** `gross_impressions`
**Type:** metric |
| Cost per 1,000 people reached
|
**Field Name:** `cost_per_1000_reached`
**Type:** metric |
| Frequency
|
**Field Name:** `frequency`
**Type:** metric |
### Video
| | |
| ------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Video Views
| The number of times your video starts to play. Replays will not be counted.
**Field Name:** `video_play_actions`
**Type:** metric |
| Video Views at 25%
| The number of times your video was played at 25% of its length. Replays will not be counted.
**Field Name:** `video_views_p25`
**Type:** metric |
| Video Views at 50%
| The number of times your video was played at 50% of its length. Replays will not be counted.
**Field Name:** `video_views_p50`
**Type:** metric |
| Video Views at 75%
| The number of times your video was played at 75% of its length. Replays will not be counted.
**Field Name:** `video_views_p75`
**Type:** metric |
| Video Views at 100%
| The number of times your video was played at 100% of its length. Replays will not be counted.
**Field Name:** `video_views_p100`
**Type:** metric |
| 2-Second Video Views
| The number of times your video played for at least 2 seconds. Replays will not be counted.
**Field Name:** `video_watched_2s`
**Type:** metric |
| 6-Second Video Views
| The number of times your video played for at least 6 seconds, or completely played. Replays will not be counted.
**Field Name:** `video_watched_6s`
**Type:** metric |
| Avg. Watch Time Per View
| The average time your video was played per single video view, including any time spent replaying the video.
**Field Name:** `average_video_play`
**Type:** metric |
| Avg. Watch Time Per Person
| The average time your video was played per person, including any time spent replaying the video. This metric is estimated.
**Field Name:** `average_video_play_per_user`
**Type:** metric |
| 6-second focused views
| Number of times your video was played for at least 6 seconds, played in full if it is less than 6 seconds, or received at least 1 engagement within the first 6 seconds.
**Field Name:** `engaged_view`
**Type:** metric |
| 6-second focused views (paid views)
| Number of times your video was played for at least 6 seconds, or played in full if it is less than 6 seconds. For each video impression, plays are counted separately and replays are excluded.
**Field Name:** `paid_engaged_view`
**Type:** metric |
| 6-second focused views (paid interactions)
| The number of times your video received at least one positive interaction (likes, shares, follows, or clicks) without being viewed for 6 seconds. This metric is only available for advertisers using focused view products.
**Field Name:** `paid_engagement_engaged_view`
**Type:** metric |
| 15-second focused views
| Number of times your video was played for at least 15 seconds, played in full if it is less than 15 seconds, or received at least 1 engagement within the first 15 seconds.
**Field Name:** `engaged_view_15s`
**Type:** metric |
| 15-second focused views (paid views)
| The number of times your video was viewed for at least 15 seconds, or viewed in full if it is less than 15 seconds long. For each video impression, plays are counted separately and replays are excluded.
**Field Name:** `paid_engaged_view_15s`
**Type:** metric |
| 15-second focused views (paid interactions)
| The number of times your video received at least one positive interaction (likes, shares, follows, or clicks) without being viewed for 15 seconds. This metric is only available for advertisers using focused view products.
**Field Name:** `paid_engagement_engaged_view_15s`
**Type:** metric |
### Engagement
| | |
| ----------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Clicks (All)
| Number of clicks from your ads. This includes clicks that lead to destination as well as those for social and interaction purposes.
**Field Name:** `engagements`
**Type:** metric |
| CTR (all)
| Percentage of impressions that resulted in a click out of all impressions.
**Field Name:** `engagement_rate`
**Type:** metric |
| Likes
| Number of times your ad was liked during the ad impression.
**Field Name:** `likes`
**Type:** metric |
| Comments
| Number of comments sent on your ad during the ad impression.
**Field Name:** `comments`
**Type:** metric |
| Shares
| Number of shares of your ad during the ad impression.
**Field Name:** `shares`
**Type:** metric |
| Followers
| Number of follows to the associated profile during the ad impression.
**Field Name:** `follows`
**Type:** metric |
| Paid profile visits
| Number of visits to the associated profile during the ad impression.
**Field Name:** `profile_visits`
**Type:** metric |
| Paid profile visit rate
| Number of visits to the associated profile during the ad impression.
**Field Name:** `profile_visits_rate`
**Type:** metric |
| Sound clicks
| Number of clicks on the sound associated with your ad during the ad impression.
**Field Name:** `clicks_on_music_disc`
**Type:** metric |
| Duet button clicks
| Number of clicks on the "Duet" button.
**Field Name:** `duet_clicks`
**Type:** metric |
| Stitch button clicks
| Number of clicks on the "Stitch" button.
**Field Name:** `stitch_clicks`
**Type:** metric |
| Use sound button clicks
| Number of clicks on the "Use sound" button.
**Field Name:** `sound_usage_clicks`
**Type:** metric |
| Anchor clicks
| Number of clicks on ad anchors.
**Field Name:** `anchor_clicks`
**Type:** metric |
| Anchor click rate
| Percentage of anchor clicks out of all impressions on your ads.
**Field Name:** `anchor_click_rate`
**Type:** metric |
| Hashtag clicks
| Number of clicks on the hashtag challenge associated with your ad during the ad impression.
**Field Name:** `clicks_on_hashtag_challenge`
**Type:** metric |
| Instant experience average view time
| Average time your Instant Experience was shown.
**Field Name:** `ix_page_duration_avg`
**Type:** metric |
| Instant experience average view percentage
| Average percentage of content on your Instant Experience that was viewed.
**Field Name:** `ix_page_viewrate_avg`
**Type:** metric |
| Instant experience video views
| Number of times your Instant Experience video was played. Replays are excluded.
**Field Name:** `ix_video_views`
**Type:** metric |
| Instant experience video views at 25%
| Number of times your Instant Experience video was played at least 25% of its length. Replays are excluded.
**Field Name:** `ix_video_views_p25`
**Type:** metric |
| Instant experience video views at 50%
| Number of times your Instant Experience video was played at least 50% of its length. Replays are excluded.
**Field Name:** `ix_video_views_p50`
**Type:** metric |
| Instant experience video views at 75%
| Number of times your Instant Experience video was played at least 75% of its length. Replays are excluded.
**Field Name:** `ix_video_views_p75`
**Type:** metric |
| Instant experience video views at 100%
| Number of times your Instant Experience video was played 100% of its length. Replays are excluded.
**Field Name:** `ix_video_views_p100`
**Type:** metric |
| Average Instant experience video view time
| Average time your instant experience video was played in a single video view, including any time spent replaying the video.
**Field Name:** `ix_average_video_play`
**Type:** metric |
| Playlist page visit
| The number of playlist page visits the paid ad drove during the campaign.
**Field Name:** `tt_playlist_visit`
**Type:** metric |
| Playlist page visit rate
| The rate of playlist page visits per impression the paid ad drove during the campaign.
**Field Name:** `tt_playlist_visit_rate`
**Type:** metric |
### Page Metrics
| | |
| -------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Payment Completion ROAS (Page)
|
**Field Name:** `complete_payment_roas`
**Type:** metric |
| Complete Payment (Page)
|
**Field Name:** `complete_payment`
**Type:** metric |
| Cost per Complete Payment (Page)
|
**Field Name:** `cost_per_complete_payment`
**Type:** metric |
| Complete Payment Rate (Page)
|
**Field Name:** `complete_payment_rate`
**Type:** metric |
| Value per Complete Payment (Page)
|
**Field Name:** `value_per_complete_payment`
**Type:** metric |
| Total Complete Payment Value (Page)
|
**Field Name:** `total_complete_payment_rate`
**Type:** metric |
| Cost per Landing Page View (Page)
|
**Field Name:** `cost_per_landing_page_view`
**Type:** metric |
| Landing Page View Rate (Page)
|
**Field Name:** `landing_page_view_rate`
**Type:** metric |
| Total Page View (Page)
|
**Field Name:** `total_pageview`
**Type:** metric |
| Cost per Page View (Page)
|
**Field Name:** `cost_per_pageview`
**Type:** metric |
| Page View Rate (Page)
|
**Field Name:** `pageview_rate`
**Type:** metric |
| Value per Page View (Page)
|
**Field Name:** `avg_value_per_pageview`
**Type:** metric |
| Total Page View Value (Page)
|
**Field Name:** `total_value_per_pageview`
**Type:** metric |
| Button Clicks (Page)
|
**Field Name:** `button_click`
**Type:** metric |
| Cost per Button Click (Page)
|
**Field Name:** `cost_per_button_click`
**Type:** metric |
| Button Click Rate (Page)
|
**Field Name:** `button_click_rate`
**Type:** metric |
| Value per Button Click (Page)
|
**Field Name:** `value_per_button_click`
**Type:** metric |
| Button Click Value (Page)
|
**Field Name:** `total_button_click_value`
**Type:** metric |
| Add to Cart (Page)
|
**Field Name:** `web_event_add_to_cart`
**Type:** metric |
| Cost per Add to Cart (Page)
|
**Field Name:** `cost_per_web_event_add_to_cart`
**Type:** metric |
| Add to Cart Rate (Page)
|
**Field Name:** `web_event_add_to_cart_rate`
**Type:** metric |
| Value per Add to Cart (Page)
|
**Field Name:** `value_per_web_event_add_to_cart`
**Type:** metric |
| Add to Cart Value (Page)
|
**Field Name:** `total_web_event_add_to_cart_value`
**Type:** metric |
| Checkout Initiated (Page)
|
**Field Name:** `initiate_checkout`
**Type:** metric |
| Cost per Checkout Initiated (Page)
|
**Field Name:** `cost_per_initiate_checkout`
**Type:** metric |
| Checkout Initiation Rate (Page)
|
**Field Name:** `initiate_checkout_rate`
**Type:** metric |
| Value per Checkout Initiated (Page)
|
**Field Name:** `value_per_initiate_checkout`
**Type:** metric |
| Checkout Initiation Value (Page)
|
**Field Name:** `total_initiate_checkout_value`
**Type:** metric |
| Search (Page)
|
**Field Name:** `page_event_search`
**Type:** metric |
| Cost per Search (Page)
|
**Field Name:** `cost_per_page_event_search`
**Type:** metric |
| Search Rate (Page)
|
**Field Name:** `page_event_search_rate`
**Type:** metric |
| Value per Search (Page)
|
**Field Name:** `value_per_page_event_search`
**Type:** metric |
| Search Value (Page)
|
**Field Name:** `total_page_event_search_value`
**Type:** metric |
| Orders Placed (Page)
|
**Field Name:** `on_web_order`
**Type:** metric |
| Cost per Order Placed (Page)
|
**Field Name:** `cost_per_on_web_order`
**Type:** metric |
| Orders Placed Rate (Page)
|
**Field Name:** `on_web_order_rate`
**Type:** metric |
| Value per Order Placed (Page)
|
**Field Name:** `value_per_on_web_order`
**Type:** metric |
| Order Placed Value (Page)
|
**Field Name:** `total_on_web_order_value`
**Type:** metric |
| Payment Info Added (Page)
|
**Field Name:** `add_billing`
**Type:** metric |
| Cost per Payment Info Add (Page)
|
**Field Name:** `cost_per_add_billing`
**Type:** metric |
| Payment Info Add Rate (Page)
|
**Field Name:** `add_billing_rate`
**Type:** metric |
| Value per Payment Info Add (Page)
|
**Field Name:** `value_per_add_billing`
**Type:** metric |
| Payment Info Add Value (Page)
|
**Field Name:** `total_add_billing_value`
**Type:** metric |
| Adds to Wishlist (Page)
|
**Field Name:** `on_web_add_to_wishlist`
**Type:** metric |
| Cost per Add to Wishlist (Page)
|
**Field Name:** `cost_per_on_web_add_to_wishlist`
**Type:** metric |
| Add to Wishlist Rate (Page)
|
**Field Name:** `on_web_add_to_wishlist_per_click`
**Type:** metric |
| Value per Add to Wishlist (Page)
|
**Field Name:** `value_per_on_web_add_to_wishlist`
**Type:** metric |
| Add to Wishlist Value (Page)
|
**Field Name:** `total_on_web_add_to_wishlist_value`
**Type:** metric |
| Subscriptions (Page)
|
**Field Name:** `on_web_subscribe`
**Type:** metric |
| Cost per Subscription (Page)
|
**Field Name:** `cost_per_on_web_subscribe`
**Type:** metric |
| Subscription Rate (Page)
|
**Field Name:** `on_web_subscribe_per_click`
**Type:** metric |
| Value per Subscription (Page)
|
**Field Name:** `value_per_on_web_subscribe`
**Type:** metric |
| Subscription Value (Page)
|
**Field Name:** `total_on_web_subscribe_value`
**Type:** metric |
| Form Submissions (Page)
|
**Field Name:** `form`
**Type:** metric |
| Cost per Form Submission (Page)
|
**Field Name:** `cost_per_form`
**Type:** metric |
| Form Submission Rate (Page)
|
**Field Name:** `form_rate`
**Type:** metric |
| Value per Form Submission (Page)
|
**Field Name:** `value_per_form`
**Type:** metric |
| Form Submission Value (Page)
|
**Field Name:** `total_form_value`
**Type:** metric |
| Downloads (Page)
|
**Field Name:** `download_start`
**Type:** metric |
| Cost per Download (Page)
|
**Field Name:** `cost_per_download_start`
**Type:** metric |
| Download Rate (Page)
|
**Field Name:** `download_start_rate`
**Type:** metric |
| Value per Download (Page)
|
**Field Name:** `value_per_download_start`
**Type:** metric |
| Download Value (Page)
|
**Field Name:** `total_download_start_value`
**Type:** metric |
| Custom Events (Web)
|
**Field Name:** `custom_page_events`
**Type:** metric |
| Cost per Custom Event (Web)
|
**Field Name:** `cost_per_custom_page_event`
**Type:** metric |
| Custom Event Rate (Web)
|
**Field Name:** `custom_page_event_rate`
**Type:** metric |
| Value per Custom Event (Web)
|
**Field Name:** `value_per_custom_page_event`
**Type:** metric |
| Custom Event Value (Web)
|
**Field Name:** `custom_page_events_value`
**Type:** metric |
| Page Browse
| The number of page browse events.
**Field Name:** `page_browse_view`
**Type:** metric |
| Cost per Page Browse
| The average cost of each page browse event.
**Field Name:** `cost_per_page_browse_view`
**Type:** metric |
| Page Browse Rate (%)
| The percentage of page browse events out of all click events.
**Field Name:** `page_browse_view_rate`
**Type:** metric |
| Value per Page Browse
| The average value returned from page browse events.
**Field Name:** `total_page_browse_view_value`
**Type:** metric |
| Total Page Browse Value
| The total value returned from page browse events.
**Field Name:** `value_per_page_browse_view`
**Type:** metric |
| Contacts (Page)
| The number of page contact actions attributed to your ads.
**Field Name:** `online_consult`
**Type:** metric |
| Cost per Contact (Page)
| The average cost per page contact action attributed to your ads.
**Field Name:** `cost_per_online_consult`
**Type:** metric |
| Unique Contact Rate (Page)
| The percentage of page contact actions from all clicks attributed to your ads.
**Field Name:** `online_consult_rate`
**Type:** metric |
| Value per Contact (Page)
| The average value per page contact action attributed to your ads.
**Field Name:** `value_per_online_consult`
**Type:** metric |
| Contact Value (Page)
| The total value of page contact actions attributed to your ads.
**Field Name:** `total_online_consult_value`
**Type:** metric |
| Registrations Completed (Page)
| The number of page complete registration actions attributed to your ads.
**Field Name:** `user_registration`
**Type:** metric |
| Cost per Complete Registration (Page)
| The average cost per page complete registration action attributed to your ads.
**Field Name:** `cost_per_user_registration`
**Type:** metric |
| Registration Completion Rate (Page)
| The percentage of page complete registration actions from all clicks attributed to your ads.
**Field Name:** `user_registration_rate`
**Type:** metric |
| Value per Complete Registration (Page)
| The average value per page complete registration action attributed to your ads.
**Field Name:** `value_per_user_registration`
**Type:** metric |
| Registration Completion Value (Page)
| The total value of page complete registration actions attributed to your ads.
**Field Name:** `total_user_registration_value`
**Type:** metric |
| Content Views (Page)
| The number of page view content actions attributed to your ads.
**Field Name:** `page_content_view_events`
**Type:** metric |
| Cost per Content View (Page)
| The average cost per page view content action attributed to your ads.
**Field Name:** `cost_per_page_content_view_event`
**Type:** metric |
| Content View Rate (Page)
| The percentage of page view content actions from all clicks attributed to your ads.
**Field Name:** `page_content_view_event_rate`
**Type:** metric |
| Value per Content View (Page)
| The average value per page view content action attributed to your ads.
**Field Name:** `value_per_page_content_view_event`
**Type:** metric |
| Content View Value (Page)
| The total value of page view content actions attributed to your ads.
**Field Name:** `total_page_view_content_events_value`
**Type:** metric |
| Product Details Page Browse
| The number of product details page browse events.
**Field Name:** `product_details_page_browse`
**Type:** metric |
| Product Details Page Browse Cost
| The average cost of each product details page browse event.
**Field Name:** `cost_per_product_details_page_browse`
**Type:** metric |
| Product Details Page Browse Rate (%)
| The percentage of product details page browse events out of all click events.
**Field Name:** `product_details_page_browse_rate`
**Type:** metric |
| Value per Product Details Page Browse
| The average value returned from product details page browse events.
**Field Name:** `value_per_product_details_page_browse`
**Type:** metric |
| Total Product Details Page Browse Value
| The total value returned from product details page browse events.
**Field Name:** `total_product_details_page_browse_value`
**Type:** metric |
### Onsite Metrics
| | |
| --------------------------------------------------------- | -------------------------------------------------------------------------------------- |
| Adds to wishlist (onsite)
|
**Field Name:** `onsite_add_to_wishlist`
**Type:** metric |
| Cost per add to wishlist (onsite)
|
**Field Name:** `cost_per_onsite_add_to_wishlist`
**Type:** metric |
| Unique add to wishlist rate (onsite)
|
**Field Name:** `onsite_add_to_wishlist_rate`
**Type:** metric |
| Value per add to wishlist (onsite)
|
**Field Name:** `value_per_onsite_add_to_wishlist`
**Type:** metric |
| Add to wishlist value (onsite)
|
**Field Name:** `total_onsite_add_to_wishlist_value`
**Type:** metric |
| Total Add Billing (Onsite)
|
**Field Name:** `onsite_add_billing`
**Type:** metric |
| Cost per Add Billing (Onsite)
|
**Field Name:** `cost_per_onsite_add_billing`
**Type:** metric |
| Add Billing Rate (Onsite) (%)
|
**Field Name:** `onsite_add_billing_rate`
**Type:** metric |
| Value per Add Billing (Onsite)
|
**Field Name:** `value_per_onsite_add_billing`
**Type:** metric |
| Total Add Billing Value (Onsite)
|
**Field Name:** `total_onsite_add_billing_value`
**Type:** metric |
| Form submissions (onsite)
|
**Field Name:** `onsite_form`
**Type:** metric |
| Cost per form submitted (onsite)
|
**Field Name:** `cost_per_onsite_form`
**Type:** metric |
| Unique form submission rate (onsite)
|
**Field Name:** `onsite_form_rate`
**Type:** metric |
| Value per form submitted (onsite)
|
**Field Name:** `value_per_onsite_form`
**Type:** metric |
| Form submission value (onsite)
|
**Field Name:** `total_onsite_form_value`
**Type:** metric |
| Total App Store Click (Onsite)
|
**Field Name:** `onsite_download_start`
**Type:** metric |
| Cost per App Store Click (Onsite)
|
**Field Name:** `cost_per_onsite_download_start`
**Type:** metric |
| App Store Click Rate (Onsite) (%)
|
**Field Name:** `onsite_download_start_rate`
**Type:** metric |
| Total Destination Visit (Onsite)
|
**Field Name:** `onsite_destination_visits`
**Type:** metric |
| Cost per Destination Visit (Onsite)
|
**Field Name:** `cost_per_onsite_destination_visit`
**Type:** metric |
| Destination Visit Rate (Onsite)
|
**Field Name:** `onsite_destination_visit_rate`
**Type:** metric |
| Page Views (Onsite)
|
**Field Name:** `ix_page_view_count`
**Type:** metric |
| Cost per Page Views (Onsite)
|
**Field Name:** `cost_per_ix_page_view_count`
**Type:** metric |
| Page Views Rate (Onsite) (%)
|
**Field Name:** `ix_page_view_count_rate`
**Type:** metric |
| Outbound clicks (Onsite)
|
**Field Name:** `ix_button_click_count`
**Type:** metric |
| Cost per call-to-action button clicks (Onsite)
|
**Field Name:** `cost_per_ix_button_click_count`
**Type:** metric |
| Call-to-action button clicks rate (Onsite) (%)
|
**Field Name:** `ix_button_click_count_rate`
**Type:** metric |
| Product Clicks (Instant Experience)
|
**Field Name:** `ix_product_click_count`
**Type:** metric |
| Cost per Product Clicks (Onsite)
|
**Field Name:** `cost_per_ix_product_click_count`
**Type:** metric |
| Product Clicks Rate (Onsite) (%)
|
**Field Name:** `ix_product_click_count_rate`
**Type:** metric |
### Spend
| | |
| ---------------------------------- | ----------------------------------------------------------------- |
| Net cost
|
**Field Name:** `billed_cost`
**Type:** metric |
| Cost Charged by Cash
|
**Field Name:** `cash_spend`
**Type:** metric |
| Cost Charged by Voucher
|
**Field Name:** `voucher_spend`
**Type:** metric |
### In App Metrics
| | |
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Real-time App Install
|
**Field Name:** `real_time_app_install`
**Type:** metric |
| Cost per Real-time App Install
|
**Field Name:** `real_time_app_install_cost`
**Type:** metric |
| App Install
|
**Field Name:** `app_install`
**Type:** metric |
| Cost per App Install
|
**Field Name:** `cost_per_app_install`
**Type:** metric |
| Unique registrations (app)
|
**Field Name:** `registration`
**Type:** metric |
| Unique cost per registration (app)
|
**Field Name:** `cost_per_registration`
**Type:** metric |
| Unique registration rate (app)
|
**Field Name:** `registration_rate`
**Type:** metric |
| Registrations (app)
|
**Field Name:** `total_registration`
**Type:** metric |
| Cost per registration (app)
|
**Field Name:** `cost_per_total_registration`
**Type:** metric |
| Unique purchases (app)
|
**Field Name:** `purchase`
**Type:** metric |
| Unique cost per purchase (app)
|
**Field Name:** `cost_per_purchase`
**Type:** metric |
| Unique purchase rate (app)
|
**Field Name:** `purchase_rate`
**Type:** metric |
| Purchases (app)
|
**Field Name:** `total_purchase`
**Type:** metric |
| Cost per purchase (app)
|
**Field Name:** `cost_per_total_purchase`
**Type:** metric |
| Value per purchase (app)
|
**Field Name:** `value_per_total_purchase`
**Type:** metric |
| Purchase value (app)
|
**Field Name:** `total_purchase_value`
**Type:** metric |
| Purchase ROAS (app)
|
**Field Name:** `total_active_pay_roas`
**Type:** metric |
| Unique adds to cart (app)
|
**Field Name:** `app_event_add_to_cart`
**Type:** metric |
| Unique cost per add to cart (app)
|
**Field Name:** `cost_per_app_event_add_to_cart`
**Type:** metric |
| Unique add to cart rate (app)
|
**Field Name:** `app_event_add_to_cart_rate`
**Type:** metric |
| Adds to cart (app)
|
**Field Name:** `total_app_event_add_to_cart`
**Type:** metric |
| Cost per add to cart (app)
|
**Field Name:** `cost_per_total_app_event_add_to_cart`
**Type:** metric |
| Value per add to cart (app)
|
**Field Name:** `value_per_total_app_event_add_to_cart`
**Type:** metric |
| Add to cart value (app)
|
**Field Name:** `total_app_event_add_to_cart_value`
**Type:** metric |
| Unique checkouts (app)
|
**Field Name:** `checkout`
**Type:** metric |
| Unique cost per checkout (app)
|
**Field Name:** `cost_per_checkout`
**Type:** metric |
| Unique checkout rate (app)
|
**Field Name:** `checkout_rate`
**Type:** metric |
| Checkouts (app)
|
**Field Name:** `total_checkout`
**Type:** metric |
| Cost per checkout (app)
|
**Field Name:** `cost_per_total_checkout`
**Type:** metric |
| Value per checkout (app)
|
**Field Name:** `value_per_checkout`
**Type:** metric |
| Checkout value (app)
|
**Field Name:** `total_checkout_value`
**Type:** metric |
| Unique content views (app)
|
**Field Name:** `view_content`
**Type:** metric |
| Unique cost per content view (app)
|
**Field Name:** `cost_per_view_content`
**Type:** metric |
| Unique content view rate (app)
|
**Field Name:** `view_content_rate`
**Type:** metric |
| Content views (app)
|
**Field Name:** `total_view_content`
**Type:** metric |
| Cost per content view (app)
|
**Field Name:** `cost_per_total_view_content`
**Type:** metric |
| Value per content view (app)
|
**Field Name:** `value_per_total_view_content`
**Type:** metric |
| Content view value (app)
|
**Field Name:** `total_view_content_value`
**Type:** metric |
| Day 1 retention
|
**Field Name:** `next_day_open`
**Type:** metric |
| Cost per unique day 1 retention
|
**Field Name:** `cost_per_next_day_open`
**Type:** metric |
| Unique day 1 retention rate (%)
|
**Field Name:** `next_day_open_rate`
**Type:** metric |
| Total day 1 retention
|
**Field Name:** `total_next_day_open`
**Type:** metric |
| Cost per day 1 retention
|
**Field Name:** `cost_per_total_next_day_open`
**Type:** metric |
| Unique payment info adds (app)
|
**Field Name:** `add_payment_info`
**Type:** metric |
| Unique cost per payment info add (app)
|
**Field Name:** `cost_per_add_payment_info`
**Type:** metric |
| Unique payment info add rate (app)
|
**Field Name:** `add_payment_info_rate`
**Type:** metric |
| Payment info adds (app)
|
**Field Name:** `total_add_payment_info`
**Type:** metric |
| Cost per payment info add (app)
|
**Field Name:** `cost_total_add_payment_info`
**Type:** metric |
| Unique adds to wishlist (app)
|
**Field Name:** `add_to_wishlist`
**Type:** metric |
| Unique cost per add to wishlist (app)
|
**Field Name:** `cost_per_add_to_wishlist`
**Type:** metric |
| Unique add to wishlist rate (app)
|
**Field Name:** `add_to_wishlist_rate`
**Type:** metric |
| Adds to wishlist (app)
|
**Field Name:** `total_add_to_wishlist`
**Type:** metric |
| Cost per add to wishlist (app)
|
**Field Name:** `cost_per_total_add_to_wishlist`
**Type:** metric |
| Value per add to wishlist (app)
|
**Field Name:** `value_per_total_add_to_wishlist`
**Type:** metric |
| Add to wishlist value (app)
|
**Field Name:** `total_add_to_wishlist_value`
**Type:** metric |
| Unique app launches (app)
|
**Field Name:** `launch_app`
**Type:** metric |
| Unique cost per app launch (app)
|
**Field Name:** `cost_per_launch_app`
**Type:** metric |
| Unique app launch rate (app)
|
**Field Name:** `launch_app_rate`
**Type:** metric |
| App launches (app)
|
**Field Name:** `total_launch_app`
**Type:** metric |
| Cost per app launch (app)
|
**Field Name:** `cost_per_total_launch_app`
**Type:** metric |
| Unique tutorials completed (app)
|
**Field Name:** `complete_tutorial`
**Type:** metric |
| Unique cost per complete tutorial (app)
|
**Field Name:** `cost_per_complete_tutorial`
**Type:** metric |
| Unique tutorial completion rate (app)
|
**Field Name:** `complete_tutorial_rate`
**Type:** metric |
| Tutorials completed (app)
|
**Field Name:** `total_complete_tutorial`
**Type:** metric |
| Cost per complete tutorial (app)
|
**Field Name:** `cost_per_total_complete_tutorial`
**Type:** metric |
| Value per complete tutorial (app)
|
**Field Name:** `value_per_total_complete_tutorial`
**Type:** metric |
| Tutorial completion value (app)
|
**Field Name:** `total_complete_tutorial_value`
**Type:** metric |
| Unique groups created (app)
|
**Field Name:** `create_group`
**Type:** metric |
| Unique cost per group created (app)
|
**Field Name:** `cost_per_create_group`
**Type:** metric |
| Unique group creation rate (app)
|
**Field Name:** `create_group_rate`
**Type:** metric |
| Groups created (app)
|
**Field Name:** `total_create_group`
**Type:** metric |
| Cost per group created (app)
|
**Field Name:** `cost_per_total_create_group`
**Type:** metric |
| Value per group created (app)
|
**Field Name:** `value_per_total_create_group`
**Type:** metric |
| Group creation value (app)
|
**Field Name:** `total_create_group_value`
**Type:** metric |
| Unique group joins (app)
|
**Field Name:** `join_group`
**Type:** metric |
| Unique cost per group join (app)
|
**Field Name:** `cost_per_join_group`
**Type:** metric |
| Unique group joining rate (app)
|
**Field Name:** `join_group_rate`
**Type:** metric |
| Group joins (app)
|
**Field Name:** `total_join_group`
**Type:** metric |
| Cost per group join (app)
|
**Field Name:** `cost_per_total_join_group`
**Type:** metric |
| Value per group join (app)
|
**Field Name:** `value_per_total_join_group`
**Type:** metric |
| Group joining value (app)
|
**Field Name:** `total_join_group_value`
**Type:** metric |
| Unique roles created (app)
|
**Field Name:** `create_gamerole`
**Type:** metric |
| Unique cost per role created (app)
|
**Field Name:** `cost_per_create_gamerole`
**Type:** metric |
| Unique role creation rate (app)
|
**Field Name:** `create_gamerole_rate`
**Type:** metric |
| Roles created (app)
|
**Field Name:** `total_create_gamerole`
**Type:** metric |
| Cost per role created (app)
|
**Field Name:** `cost_per_total_create_gamerole`
**Type:** metric |
| Value per role created (app)
|
**Field Name:** `value_per_total_create_gamerole`
**Type:** metric |
| Role creation value (app)
|
**Field Name:** `total_create_gamerole_value`
**Type:** metric |
| Unique credit spends (app)
|
**Field Name:** `spend_credits`
**Type:** metric |
| Unique cost per credit spend (app)
|
**Field Name:** `cost_per_spend_credits`
**Type:** metric |
| Unique credit spend rate (app)
|
**Field Name:** `spend_credits_rate`
**Type:** metric |
| Credit spends (app)
|
**Field Name:** `total_spend_credits`
**Type:** metric |
| Cost per credit spend (app)
|
**Field Name:** `cost_per_total_spend_credits`
**Type:** metric |
| Value per credit spend (app)
|
**Field Name:** `value_per_total_spend_credits`
**Type:** metric |
| Credit spend value (app)
|
**Field Name:** `total_spend_credits_value`
**Type:** metric |
| Unique levels achieved (app)
|
**Field Name:** `achieve_level`
**Type:** metric |
| Unique cost per unique level achieved (app)
|
**Field Name:** `cost_per_achieve_level`
**Type:** metric |
| Unique level achievement rate (app)
|
**Field Name:** `achieve_level_rate`
**Type:** metric |
| Levels achieved (app)
|
**Field Name:** `total_achieve_level`
**Type:** metric |
| Cost per level achieved (app)
|
**Field Name:** `cost_per_total_achieve_level`
**Type:** metric |
| Value per level achieved (app)
|
**Field Name:** `value_per_total_achieve_level`
**Type:** metric |
| Level achievement value (app)
|
**Field Name:** `total_achieve_level_value`
**Type:** metric |
| Unique achievements unlocked (app)
|
**Field Name:** `unlock_achievement`
**Type:** metric |
| Unique cost per achievement unlocked (app)
|
**Field Name:** `cost_per_unlock_achievement`
**Type:** metric |
| Unique unlocked achievement rate (app)
|
**Field Name:** `unlock_achievement_rate`
**Type:** metric |
| Achievements unlocked (app)
|
**Field Name:** `total_unlock_achievement`
**Type:** metric |
| Cost per achievement unlocked (app)
|
**Field Name:** `cost_per_total_unlock_achievement`
**Type:** metric |
| Value per achievement unlocked (app)
|
**Field Name:** `value_per_total_unlock_achievement`
**Type:** metric |
| Unlocked achievement value (app)
|
**Field Name:** `total_unlock_achievement_value`
**Type:** metric |
| Unique leads generated (app)
|
**Field Name:** `sales_lead`
**Type:** metric |
| Unique cost per lead generated (app)
|
**Field Name:** `cost_per_sales_lead`
**Type:** metric |
| Unique lead generation rate (app)
|
**Field Name:** `sales_lead_rate`
**Type:** metric |
| Leads generated (app)
|
**Field Name:** `total_sales_lead`
**Type:** metric |
| Cost per lead generated (app)
|
**Field Name:** `cost_per_total_sales_lead`
**Type:** metric |
| Value per lead generated (app)
|
**Field Name:** `value_per_total_sales_lead`
**Type:** metric |
| Lead generation value (app)
|
**Field Name:** `total_sales_lead_value`
**Type:** metric |
| Unique in-app ad clicks (app)
|
**Field Name:** `in_app_ad_click`
**Type:** metric |
| Unique cost per in-app ad click (app)
|
**Field Name:** `cost_per_in_app_ad_click`
**Type:** metric |
| In-app ad click rate (app)
|
**Field Name:** `in_app_ad_click_rate`
**Type:** metric |
| In-app ad clicks (app)
|
**Field Name:** `total_in_app_ad_click`
**Type:** metric |
| Cost per in-app ad click (app)
|
**Field Name:** `cost_per_total_in_app_ad_click`
**Type:** metric |
| Value per in-app ad click (app)
|
**Field Name:** `value_per_total_in_app_ad_click`
**Type:** metric |
| In-app ad click value (app)
|
**Field Name:** `total_in_app_ad_click_value`
**Type:** metric |
| Unique in-app ad impressions (app)
|
**Field Name:** `in_app_ad_impr`
**Type:** metric |
| Unique cost per in-app ad impression (app)
|
**Field Name:** `cost_per_in_app_ad_impr`
**Type:** metric |
| In-app ad impression rate (app)
|
**Field Name:** `in_app_ad_impr_rate`
**Type:** metric |
| In-app ad impressions (app)
|
**Field Name:** `total_in_app_ad_impr`
**Type:** metric |
| Cost per in-app ad impression (app)
|
**Field Name:** `cost_per_total_in_app_ad_impr`
**Type:** metric |
| Value per in-app ad impression (app)
|
**Field Name:** `value_per_total_in_app_ad_impr`
**Type:** metric |
| In-app ad impression value (app)
|
**Field Name:** `total_in_app_ad_impr_value`
**Type:** metric |
| Unique loan applications (app)
|
**Field Name:** `loan_apply`
**Type:** metric |
| Unique cost per loan application (app)
|
**Field Name:** `cost_per_loan_apply`
**Type:** metric |
| Unique loan application rate (app)
|
**Field Name:** `loan_apply_rate`
**Type:** metric |
| Loan applications (app)
|
**Field Name:** `total_loan_apply`
**Type:** metric |
| Cost per loan application (app)
|
**Field Name:** `cost_per_total_loan_apply`
**Type:** metric |
| Unique loan approvals (app)
|
**Field Name:** `loan_credit`
**Type:** metric |
| Unique cost per loan approval (app)
|
**Field Name:** `cost_per_loan_credit`
**Type:** metric |
| Unique loan approval rate (app)
|
**Field Name:** `loan_credit_rate`
**Type:** metric |
| Loan approvals (app)
|
**Field Name:** `total_loan_credit`
**Type:** metric |
| Cost per loan approval (app)
|
**Field Name:** `cost_per_total_loan_credit`
**Type:** metric |
| Unique loan disbursals (app)
|
**Field Name:** `loan_disbursement`
**Type:** metric |
| Unique cost per loan disbursal (app)
|
**Field Name:** `cost_per_loan_disbursement`
**Type:** metric |
| Unique loan disbursal rate (app)
|
**Field Name:** `loan_disbursement_rate`
**Type:** metric |
| Loan disbursals (app)
|
**Field Name:** `total_loan_disbursement`
**Type:** metric |
| Cost per loan disbursal (app)
|
**Field Name:** `cost_per_total_loan_disbursement`
**Type:** metric |
| Unique logins (app)
|
**Field Name:** `login`
**Type:** metric |
| Unique cost per login (app)
|
**Field Name:** `cost_per_login`
**Type:** metric |
| Unique login rate (app)
|
**Field Name:** `login_rate`
**Type:** metric |
| Logins (app)
|
**Field Name:** `total_login`
**Type:** metric |
| Cost per login (app)
|
**Field Name:** `cost_per_total_login`
**Type:** metric |
| Unique ratings (app)
|
**Field Name:** `ratings`
**Type:** metric |
| Unique cost per rating (app)
|
**Field Name:** `cost_per_ratings`
**Type:** metric |
| Unique rate rate (%)
|
**Field Name:** `ratings_rate`
**Type:** metric |
| Ratings (app)
|
**Field Name:** `total_ratings`
**Type:** metric |
| Cost per rating (app)
|
**Field Name:** `cost_per_total_ratings`
**Type:** metric |
| Value per rating (app)
|
**Field Name:** `value_per_total_ratings`
**Type:** metric |
| Rating value (app)
|
**Field Name:** `total_ratings_value`
**Type:** metric |
| Unique searches (app)
|
**Field Name:** `search`
**Type:** metric |
| Unique cost per search (app)
|
**Field Name:** `cost_per_search`
**Type:** metric |
| Unique search rate (app)
|
**Field Name:** `search_rate`
**Type:** metric |
| Searches (app)
|
**Field Name:** `total_search`
**Type:** metric |
| Cost per search (app)
|
**Field Name:** `cost_per_total_search`
**Type:** metric |
| Unique trial started (app)
|
**Field Name:** `start_trial`
**Type:** metric |
| Unique cost per trial started (app)
|
**Field Name:** `cost_per_start_trial`
**Type:** metric |
| Unique trial start rate (app)
|
**Field Name:** `start_trial_rate`
**Type:** metric |
| Trials started (app)
|
**Field Name:** `total_start_trial`
**Type:** metric |
| Cost per trial started (app)
|
**Field Name:** `cost_per_total_start_trial`
**Type:** metric |
| Unique subscriptions (app)
|
**Field Name:** `subscribe`
**Type:** metric |
| Unique cost per subscription (app)
|
**Field Name:** `cost_per_subscribe`
**Type:** metric |
| Unique subscription rate (app)
|
**Field Name:** `subscribe_rate`
**Type:** metric |
| Subscriptions (app)
|
**Field Name:** `total_subscribe`
**Type:** metric |
| Cost per subscription (app)
|
**Field Name:** `cost_per_total_subscribe`
**Type:** metric |
| Value per subscription (app)
|
**Field Name:** `value_per_total_subscribe`
**Type:** metric |
| Subscription value (app)
|
**Field Name:** `total_subscribe_value`
**Type:** metric |
| Unique custom events (App)
|
**Field Name:** `unique_custom_app_events`
**Type:** metric |
| Cost per unique custom event (App)
|
**Field Name:** `cost_per_unique_custom_app_event`
**Type:** metric |
| Custom event rate (App) (%)
|
**Field Name:** `custom_app_event_rate`
**Type:** metric |
| Custom events (App)
|
**Field Name:** `custom_app_events`
**Type:** metric |
| Cost per custom event (App)
|
**Field Name:** `cost_per_custom_app_event`
**Type:** metric |
| Value per custom event (App)
|
**Field Name:** `value_per_custom_app_event`
**Type:** metric |
| Custom event value (App)
|
**Field Name:** `custom_app_events_value`
**Type:** metric |
| Unique ads impression event
|
**Field Name:** `unique_ad_impression_events`
**Type:** metric |
| Cost per unique ads impression event
|
**Field Name:** `cost_per_unique_ad_impression_event`
**Type:** metric |
| Customized ads impression event rate
|
**Field Name:** `customized_ad_impression_event_rate`
**Type:** metric |
| Total ads impression event
|
**Field Name:** `ads_impression_events`
**Type:** metric |
| Cost per ads impression event
|
**Field Name:** `cost_pre_ad_impression_event`
**Type:** metric |
| Value per ads impression event
|
**Field Name:** `value_per_ad_impression_event`
**Type:** metric |
| Total ads impression event value
|
**Field Name:** `total_ad_impression_events_value`
**Type:** metric |
| Total Ads impression ROAS
|
**Field Name:** `total_ad_impression_roas`
**Type:** metric |
| Day 7 retentions
| Number of Day 7 retentions from your mobile app counted as app events and attributed to your ads.
**Field Name:** `day7_retention`
**Type:** metric |
| Cost per Day 7 retention
| Average cost per Day 7 retention attributed to your ad.
**Field Name:** `cost_per_day7_retention`
**Type:** metric |
| Day 7 retention rate (%)
| Percentage of Day 7 retentions out of all app install events.
**Field Name:** `day7_retention_rate`
**Type:** metric |
| Day 7 retentions
| Total number of Day 7 retentions from your mobile app counted as app events and attributed to your ads.
**Field Name:** `total_day7_retention`
**Type:** metric |
| Cost per Day 7 retention
| Average cost per Day 7 retention attributed to your ad.
**Field Name:** `cost_per_total_day7_retention`
**Type:** metric |
| Value per Day 7 retention
| Average value per Day 7 retention attributed to your ad.
**Field Name:** `value_per_total_day7_retention`
**Type:** metric |
| Day 7 retention value
| Total value returned from all Day 7 retentions.
**Field Name:** `total_day7_retention_value`
**Type:** metric |
| Day 0 purchase ROAS
| Total return on ad spend (ROAS) from purchase actions within 24 hours of app install.
**Field Name:** `total_purchase_roas_day0`
**Type:** metric |
| Day 2 purchase ROAS
| Total return on ad spend (ROAS) from purchase actions within 72 hours of app install.
**Field Name:** `total_purchase_roas_day2`
**Type:** metric |
| Day 6 purchase ROAS
| Total return on ad spend (ROAS) from purchase actions within 168 hours of app install.
**Field Name:** `total_purchase_roas_day6`
**Type:** metric |
| Day 0 purchase value
| Total value of all purchase actions within 24 hours of app install.
**Field Name:** `total_purchase_value_day0`
**Type:** metric |
| Day 2 purchase value
| Total value of all purchase actions within 72 hours of app install.
**Field Name:** `total_purchase_value_day2`
**Type:** metric |
| Day 6 purchase value
| Total value of all purchase actions within 168 hours of app install.
**Field Name:** `total_purchase_value_day6`
**Type:** metric |
| Day 0 ad revenue ROAS
| Total return on ad spend (ROAS) from ad revenue within 24 hours of app install.
**Field Name:** `ad_impression_ad_revenue_roas_day0`
**Type:** metric |
| Day 2 ad revenue ROAS
| Total return on ad spend (ROAS) from ad revenue within 72 hours of app install.
**Field Name:** `ad_impression_ad_revenue_roas_day2`
**Type:** metric |
| Day 6 ad revenue ROAS
| Total return on ad spend (ROAS) from ad revenue within 168 hours of app install.
**Field Name:** `ad_impression_ad_revenue_roas_day6`
**Type:** metric |
| Day 0 ad revenue
| Total ad revenue within 24 hours of app install.
**Field Name:** `ad_impression_ad_revenue_day0`
**Type:** metric |
| Day 2 ad revenue
| Total ad revenue within 72 hours of app install.
**Field Name:** `ad_impression_ad_revenue_day2`
**Type:** metric |
| Day 6 ad revenue
| Total ad revenue within 168 hours of app install.
**Field Name:** `ad_impression_ad_revenue_day6`
**Type:** metric |
### SKAN Results (IOS)
| | |
| --------------------------------------------- | --------------------------------------------------------------------------------------- |
| Results (SKAN)
|
**Field Name:** `skan_result`
**Type:** metric |
| Cost per result (SKAN)
|
**Field Name:** `skan_cost_per_result`
**Type:** metric |
| Result rate (SKAN)
|
**Field Name:** `skan_result_rate`
**Type:** metric |
| Conversions (SKAN)
|
**Field Name:** `skan_conversion`
**Type:** metric |
| Cost per conversion (SKAN)
|
**Field Name:** `skan_cost_per_conversion`
**Type:** metric |
| Conversion rate (SKAN, clicks)
|
**Field Name:** `skan_conversion_rate`
**Type:** metric |
| Conversion rate (SKAN)
|
**Field Name:** `skan_conversion_rate_v2`
**Type:** metric |
| Conversions (SKAN click time)
|
**Field Name:** `skan_click_time_conversion`
**Type:** metric |
| CPA (SKAN click time)
|
**Field Name:** `skan_click_time_cost_per_conversion`
**Type:** metric |
| CVR (SKAN click time, impressions)
|
**Field Name:** `skan_click_time_conversion_rate_v2`
**Type:** metric |
### Attribution
| | |
| ---------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| VTA Conversion
| The number of conversion events that are attributed to an ad impression.
**Field Name:** `vta_conversion`
**Type:** metric |
| Cost per VTA Conversion
| The average cost for each conversion event that is attributed to an ad impression.
**Field Name:** `cost_per_vta_conversion`
**Type:** metric |
| VTA App Install
| The number of app install events attributed to an ad impression.
**Field Name:** `vta_app_install`
**Type:** metric |
| Cost per VTA App Install
| The average cost per each app install event attributed to an ad impression.
**Field Name:** `cost_per_vta_app_install`
**Type:** metric |
| VTA Registration
| The number of registration event that attribute to impression, based on information received from your measurement partner.
**Field Name:** `vta_registration`
**Type:** metric |
| Cost per VTA Registration
| The average cost for each registration event that attribute to impression.
**Field Name:** `cost_per_vta_registration`
**Type:** metric |
| VTA Purchase
| The number of in-app payment event that attribute to impression, based on information received from your measurement partner.
**Field Name:** `vta_purchase`
**Type:** metric |
| Cost per VTA Purchase
| The average cost for each payment event that attribute to impression.
**Field Name:** `cost_per_vta_purchase`
**Type:** metric |
| VTA Complete Payment
| Complete payment events attributed to someone only viewing your ad.
**Field Name:** `vta_complete_payment`
**Type:** metric |
| Cost per VTA Complete Payment
| Average cost of each complete payment event attributed to someone only viewing your ad.
**Field Name:** `cost_per_vta_payments_completed`
**Type:** metric |
| Total VTA Complete Payment Value
| Total value of complete payment events attributed to someone only viewing your ad.
**Field Name:** `vta_complete_payment_value`
**Type:** metric |
| VTA Complete Payment ROAS
| Return on ad spend (ROAS) from complete payment events attributed to someone only viewing your ad.
**Field Name:** `vta_complete_payment_roas`
**Type:** metric |
| CTA Conversion
| The number of conversion events that are attributed to a click on your ad.
**Field Name:** `cta_conversion`
**Type:** metric |
| Cost per CTA Conversion
| The average cost for each conversion event that is attributed to a click on your ad.
**Field Name:** `cost_per_cta_conversion`
**Type:** metric |
| CTA App Install
| The number of app install events attributed to a click on your ad.
**Field Name:** `cta_app_install`
**Type:** metric |
| Cost per CTA App Install
| The average cost per each app install event attributed to a click on your ad.
**Field Name:** `cost_per_cta_app_install`
**Type:** metric |
| CTA Registration
| The number of in-app registration event that attribute to click, based on information received from your measurement partner.
**Field Name:** `cta_registration`
**Type:** metric |
| Cost per CTA Registration
| The average cost for in-app registration event that attribute to clicks.
**Field Name:** `cost_per_cta_registration`
**Type:** metric |
| CTA Purchase
| The number of in-app payment event that attribute to click, based on information received from your measurement partner.
**Field Name:** `cta_purchase`
**Type:** metric |
| Cost per CTA Purchase
| The average cost for each payment event that attribute to clicks.
**Field Name:** `cost_per_cta_purchase`
**Type:** metric |
| Engaged View-Through Conversions
| The number of conversions attributed to an engaged view.
**Field Name:** `engaged_view_through_conversions`
**Type:** metric |
| Cost Per Engaged View-Through Conversions
| The average cost of each conversion that is attributed to an engaged view.
**Field Name:** `cost_per_engaged_view_through_conversion`
**Type:** metric |
| EVTA App Installs
| The number of app install actions attributed to engaged views of your ad.
**Field Name:** `evta_app_install`
**Type:** metric |
| Cost per EVTA App Install
| The average cost per app install action attributed to engaged views of your ad.
**Field Name:** `cost_per_evta_app_install`
**Type:** metric |
| EVTA Registrations
| The number of registration actions attributed to engaged views of your ad.
**Field Name:** `evta_registration`
**Type:** metric |
| Cost per EVTA Registration
| The average cost per registration action attributed to engaged views of your ad.
**Field Name:** `cost_per_evta_registration`
**Type:** metric |
| EVTA Purchases
| The number of purchase actions attributed to engaged views of your ad.
**Field Name:** `evta_purchase`
**Type:** metric |
| Cost per EVTA Purchase
| The average cost per purchase action attributed to engaged views of your ad.
**Field Name:** `cost_per_evta_purchase`
**Type:** metric |
| EVTA Payments Completed
| The number of complete payment actions attributed to engaged views of your ad.
**Field Name:** `evta_payments_completed`
**Type:** metric |
| Cost per EVTA Complete Payment
| The average cost per complete payment action attributed to engaged views of your ad.
**Field Name:** `cost_per_evta_payments_completed`
**Type:** metric |
### SKAN Attribution (IOS)
| | |
| ------------------------------------------- | ---------------------------------------------------------------------------------- |
| VTA Conversion (SKAN)
|
**Field Name:** `skan_vta_conversion`
**Type:** metric |
| Cost per VTA Conversion (SKAN)
|
**Field Name:** `skan_cost_per_vta_conversion`
**Type:** metric |
| VTA App Install (SKAN)
|
**Field Name:** `skan_vta_app_install`
**Type:** metric |
| Cost per VTA App Install (SKAN)
|
**Field Name:** `skan_cost_per_vta_app_install`
**Type:** metric |
| VTA Registration (SKAN)
|
**Field Name:** `skan_vta_registration`
**Type:** metric |
| Cost per VTA Registration (SKAN)
|
**Field Name:** `skan_cost_per_vta_registration`
**Type:** metric |
| VTA Purchase (SKAN)
|
**Field Name:** `skan_vta_purchase`
**Type:** metric |
| Cost per VTA Purchase (SKAN)
|
**Field Name:** `skan_cost_per_vta_purchase`
**Type:** metric |
| CTA Conversion (SKAN)
|
**Field Name:** `skan_cta_conversion`
**Type:** metric |
| Cost per CTA Conversion (SKAN)
|
**Field Name:** `skan_cost_per_cta_conversion`
**Type:** metric |
| CTA App Install (SKAN)
|
**Field Name:** `skan_cta_app_install`
**Type:** metric |
| Cost per CTA App Install (SKAN)
|
**Field Name:** `skan_cost_per_cta_app_install`
**Type:** metric |
| CTA Registration (SKAN)
|
**Field Name:** `skan_cta_registration`
**Type:** metric |
| Cost per CTA Registration (SKAN)
|
**Field Name:** `skan_cost_per_cta_registration`
**Type:** metric |
| CTA Purchase (SKAN)
|
**Field Name:** `skan_cta_purchase`
**Type:** metric |
| Cost per CTA Purchase (SKAN)
|
**Field Name:** `skan_cost_per_cta_purchase`
**Type:** metric |
### SKAN In App (IOS)
| | |
| ---------------------------------------------------- | ------------------------------------------------------------------------------------------ |
| App Install (SKAN)
|
**Field Name:** `skan_app_install`
**Type:** metric |
| Cost per App Install (SKAN)
|
**Field Name:** `skan_cost_per_app_install`
**Type:** metric |
| App Installs (SKAN Privacy Withheld)
|
**Field Name:** `skan_app_install_withheld`
**Type:** metric |
| Unique Registration (SKAN)
|
**Field Name:** `skan_registration`
**Type:** metric |
| Cost per Unique Registration (SKAN)
|
**Field Name:** `skan_cost_per_registration`
**Type:** metric |
| Unique Registration Rate (SKAN)
|
**Field Name:** `skan_registration_rate`
**Type:** metric |
| Total Registration (SKAN)
|
**Field Name:** `skan_total_registration`
**Type:** metric |
| Cost per Registration (SKAN)
|
**Field Name:** `skan_cost_per_total_registration`
**Type:** metric |
| Unique Purchase (SKAN)
|
**Field Name:** `skan_purchase`
**Type:** metric |
| Cost per Unique Purchase (SKAN)
|
**Field Name:** `skan_cost_per_purchase`
**Type:** metric |
| Unique Purchase Rate (%) (SKAN)
|
**Field Name:** `skan_purchase_rate`
**Type:** metric |
| Total Purchase (SKAN)
|
**Field Name:** `skan_total_purchase`
**Type:** metric |
| Cost per Purchase (SKAN)
|
**Field Name:** `skan_cost_per_total_purchase`
**Type:** metric |
| Total Purchase Value (SKAN)
|
**Field Name:** `skan_total_purchase_value`
**Type:** metric |
| Purchase ROAS (SKAN)
|
**Field Name:** `skan_total_repetitive_active_pay_roas`
**Type:** metric |
| Unique Add to Cart (SKAN)
|
**Field Name:** `skan_add_to_cart`
**Type:** metric |
| Cost per Unique Add to Cart (SKAN)
|
**Field Name:** `skan_cost_per_add_to_cart`
**Type:** metric |
| Unique Add to Cart Rate (%) (SKAN)
|
**Field Name:** `skan_add_to_cart_rate`
**Type:** metric |
| Total Add to Cart (SKAN)
|
**Field Name:** `skan_total_add_to_cart`
**Type:** metric |
| Cost per Add to Cart (SKAN)
|
**Field Name:** `skan_cost_per_total_add_to_cart`
**Type:** metric |
| Total Add to Cart Value (SKAN)
|
**Field Name:** `skan_total_add_to_cart_value`
**Type:** metric |
| Unique Checkout (SKAN)
|
**Field Name:** `skan_checkout`
**Type:** metric |
| Cost per Unique Checkout (SKAN)
|
**Field Name:** `skan_cost_per_checkout`
**Type:** metric |
| Unique Checkout Rate (%) (SKAN)
|
**Field Name:** `skan_checkout_rate`
**Type:** metric |
| Total Checkout (SKAN)
|
**Field Name:** `skan_total_checkout`
**Type:** metric |
| Cost per Checkout (SKAN)
|
**Field Name:** `skan_cost_per_total_checkout`
**Type:** metric |
| Total Checkout Value (SKAN)
|
**Field Name:** `skan_total_checkout_value`
**Type:** metric |
| Unique View Content (SKAN)
|
**Field Name:** `skan_view_content`
**Type:** metric |
| Cost per Unique View Content (SKAN)
|
**Field Name:** `skan_cost_per_view_content`
**Type:** metric |
| Unique View Content Rate (%) (SKAN)
|
**Field Name:** `skan_view_content_rate`
**Type:** metric |
| Total View Content (SKAN)
|
**Field Name:** `skan_total_view_content`
**Type:** metric |
| Cost per View Content (SKAN)
|
**Field Name:** `skan_cost_per_total_view_content`
**Type:** metric |
| Total View Content Value (SKAN)
|
**Field Name:** `skan_total_view_content_value`
**Type:** metric |
| Unique Add Payment Info (SKAN)
|
**Field Name:** `skan_add_payment_info`
**Type:** metric |
| Cost per Unique Add Payment Info (SKAN)
|
**Field Name:** `skan_cost_per_add_payment_info`
**Type:** metric |
| Unique Add Payment Info Rate (%) (SKAN)
|
**Field Name:** `skan_add_payment_info_rate`
**Type:** metric |
| Total Add Payment Info (SKAN)
|
**Field Name:** `skan_total_add_payment_info`
**Type:** metric |
| Cost per Add Payment Info (SKAN)
|
**Field Name:** `skan_cost_total_add_payment_info`
**Type:** metric |
| Unique Add to Wishlist (SKAN)
|
**Field Name:** `skan_add_to_wishlist`
**Type:** metric |
| Cost per Unique Add to Wishlist (SKAN)
|
**Field Name:** `skan_cost_per_add_to_wishlist`
**Type:** metric |
| Unique Add to Wishlist Rate (%) (SKAN)
|
**Field Name:** `skan_add_to_wishlist_rate`
**Type:** metric |
| Total Add to Wishlist (SKAN)
|
**Field Name:** `skan_total_add_to_wishlist`
**Type:** metric |
| Cost per Add to Wishlist (SKAN)
|
**Field Name:** `skan_cost_per_total_add_to_wishlist`
**Type:** metric |
| Total Add to Wishlist Value (SKAN)
|
**Field Name:** `skan_total_add_to_wishlist_value`
**Type:** metric |
| Unique Launch App (SKAN)
|
**Field Name:** `skan_launch_app`
**Type:** metric |
| Cost per Unique Launch App (SKAN)
|
**Field Name:** `skan_cost_per_launch_app`
**Type:** metric |
| Unique Launch App Rate (%) (SKAN)
|
**Field Name:** `skan_launch_app_rate`
**Type:** metric |
| Total Launch App (SKAN)
|
**Field Name:** `skan_total_launch_app`
**Type:** metric |
| Cost per Launch App (SKAN)
|
**Field Name:** `skan_cost_per_total_launch_app`
**Type:** metric |
| Total Complete Tutorial (SKAN)
|
**Field Name:** `skan_total_complete_tutorial`
**Type:** metric |
| Cost per Complete Tutorial (SKAN)
|
**Field Name:** `skan_cost_per_total_complete_tutorial`
**Type:** metric |
| Unique Complete Tutorial (SKAN)
|
**Field Name:** `skan_complete_tutorial`
**Type:** metric |
| Cost per Unique Complete Tutorial (SKAN)
|
**Field Name:** `skan_cost_per_complete_tutorial`
**Type:** metric |
| Unique Complete Tutorial Rate (%) (SKAN)
|
**Field Name:** `skan_complete_tutorial_rate`
**Type:** metric |
| Total Complete Tutorial Value (SKAN)
|
**Field Name:** `skan_total_complete_tutorial_value`
**Type:** metric |
| Unique Create Group (SKAN)
|
**Field Name:** `skan_create_group`
**Type:** metric |
| Cost per Unique Create Group (SKAN)
|
**Field Name:** `skan_cost_per_create_group`
**Type:** metric |
| Unique Create Group Rate (%) (SKAN)
|
**Field Name:** `skan_create_group_rate`
**Type:** metric |
| Total Create Group (SKAN)
|
**Field Name:** `skan_total_create_group`
**Type:** metric |
| Cost per Create Group (SKAN)
|
**Field Name:** `skan_cost_per_total_create_group`
**Type:** metric |
| Total Create Group Value (SKAN)
|
**Field Name:** `skan_total_create_group_value`
**Type:** metric |
| Unique Join Group (SKAN)
|
**Field Name:** `skan_join_group`
**Type:** metric |
| Cost per Unique Join Group (SKAN)
|
**Field Name:** `skan_cost_per_join_group`
**Type:** metric |
| Unique Join Group Rate (%) (SKAN)
|
**Field Name:** `skan_join_group_rate`
**Type:** metric |
| Total Join Group (SKAN)
|
**Field Name:** `skan_total_join_group`
**Type:** metric |
| Cost per Join Group (SKAN)
|
**Field Name:** `skan_cost_per_total_join_group`
**Type:** metric |
| Total Join Group Value (SKAN)
|
**Field Name:** `skan_total_join_group_value`
**Type:** metric |
| Unique Create Role (SKAN)
|
**Field Name:** `skan_create_gamerole`
**Type:** metric |
| Cost per Unique Create Role (SKAN)
|
**Field Name:** `skan_cost_per_create_gamerole`
**Type:** metric |
| Unique Create Role Rate (%) (SKAN)
|
**Field Name:** `skan_create_gamerole_rate`
**Type:** metric |
| Total Create Role (SKAN)
|
**Field Name:** `skan_total_create_gamerole`
**Type:** metric |
| Cost per Create Role (SKAN)
|
**Field Name:** `skan_cost_per_total_create_gamerole`
**Type:** metric |
| Total Create Role Value (SKAN)
|
**Field Name:** `skan_total_create_gamerole_value`
**Type:** metric |
| Unique Spend Credit (SKAN)
|
**Field Name:** `skan_spend_credits`
**Type:** metric |
| Cost per Unique Spend Credit (SKAN)
|
**Field Name:** `skan_cost_per_spend_credits`
**Type:** metric |
| Spend Credit Rate (%) (SKAN)
|
**Field Name:** `skan_spend_credits_rate`
**Type:** metric |
| Total Spend Credit (SKAN)
|
**Field Name:** `skan_total_spend_credits`
**Type:** metric |
| Cost per Spend Credit (SKAN)
|
**Field Name:** `skan_cost_per_total_spend_credits`
**Type:** metric |
| Total Spend Credit Value (SKAN)
|
**Field Name:** `skan_total_spend_credits_value`
**Type:** metric |
| Unique Achieve Level (SKAN)
|
**Field Name:** `skan_achieve_level`
**Type:** metric |
| Cost per Unique Achieve Level (SKAN)
|
**Field Name:** `skan_cost_per_achieve_level`
**Type:** metric |
| Achieve Level Rate (%) (SKAN)
|
**Field Name:** `skan_achieve_level_rate`
**Type:** metric |
| Total Achieve Level (SKAN)
|
**Field Name:** `skan_total_achieve_level`
**Type:** metric |
| Cost per Achieve Level (SKAN)
|
**Field Name:** `skan_cost_per_total_achieve_level`
**Type:** metric |
| Total Achieve Level Value (SKAN)
|
**Field Name:** `skan_total_achieve_level_value`
**Type:** metric |
| Unique Unlock Achievement (SKAN)
|
**Field Name:** `skan_unlock_achievement`
**Type:** metric |
| Cost per Unique Unlock Achievement (SKAN)
|
**Field Name:** `skan_cost_per_unlock_achievement`
**Type:** metric |
| Unique Unlock Achievement Rate (%) (SKAN)
|
**Field Name:** `skan_unlock_achievement_rate`
**Type:** metric |
| Total Unlock Achievement (SKAN)
|
**Field Name:** `skan_total_unlock_achievement`
**Type:** metric |
| Cost per Unlock Achievement (SKAN)
|
**Field Name:** `skan_cost_per_total_unlock_achievement`
**Type:** metric |
| Total Unlock Achievement Value (SKAN)
|
**Field Name:** `skan_total_unlock_achievement_value`
**Type:** metric |
| Unique Generate Lead (SKAN)
|
**Field Name:** `skan_sales_lead`
**Type:** metric |
| Cost per Unique Generate Lead (SKAN)
|
**Field Name:** `skan_cost_per_sales_lead`
**Type:** metric |
| Unique Generate Lead Rate (%) (SKAN)
|
**Field Name:** `skan_sales_lead_rate`
**Type:** metric |
| Total Generate Lead (SKAN)
|
**Field Name:** `skan_total_sales_lead`
**Type:** metric |
| Cost per Generate Lead (SKAN)
|
**Field Name:** `skan_cost_per_total_sales_lead`
**Type:** metric |
| Total Generate Lead Value (SKAN)
|
**Field Name:** `skan_total_sales_lead_value`
**Type:** metric |
| Unique In-App Ad Click (SKAN)
|
**Field Name:** `skan_in_app_ad_click`
**Type:** metric |
| Cost per Unique In-App Ad Click (SKAN)
|
**Field Name:** `skan_cost_per_in_app_ad_click`
**Type:** metric |
| Unique In-App Ad Click Rate (%) (SKAN)
|
**Field Name:** `skan_in_app_ad_click_rate`
**Type:** metric |
| Total In-App Ad Click (SKAN)
|
**Field Name:** `skan_total_in_app_ad_click`
**Type:** metric |
| Cost per In-App Ad Click (SKAN)
|
**Field Name:** `skan_cost_per_total_in_app_ad_click`
**Type:** metric |
| Total In-App Ad Click Value (SKAN)
|
**Field Name:** `skan_total_in_app_ad_click_value`
**Type:** metric |
| Unique In-App Ad Impr (SKAN)
|
**Field Name:** `skan_in_app_ad_impr`
**Type:** metric |
| Cost per Unique In-App Ad Impr (SKAN)
|
**Field Name:** `skan_cost_per_in_app_ad_impr`
**Type:** metric |
| Unique In-App Ad Impr Rate (%) (SKAN)
|
**Field Name:** `skan_in_app_ad_impr_rate`
**Type:** metric |
| Total In-App Ad Impr (SKAN)
|
**Field Name:** `skan_total_in_app_ad_impr`
**Type:** metric |
| Cost per In-App Ad Impr (SKAN)
|
**Field Name:** `skan_cost_per_total_in_app_ad_impr`
**Type:** metric |
| Total In-App Ad Impr Value (SKAN)
|
**Field Name:** `skan_total_in_app_ad_impr_value`
**Type:** metric |
| Unique Loan Apply (SKAN)
|
**Field Name:** `skan_loan_apply`
**Type:** metric |
| Cost per Unique Loan Apply (SKAN)
|
**Field Name:** `skan_cost_per_loan_apply`
**Type:** metric |
| Unique Loan Apply Rate (%) (SKAN)
|
**Field Name:** `skan_loan_apply_rate`
**Type:** metric |
| Total Loan Apply (SKAN)
|
**Field Name:** `skan_total_loan_apply`
**Type:** metric |
| Cost per Loan Apply (SKAN)
|
**Field Name:** `skan_cost_per_total_loan_apply`
**Type:** metric |
| Unique Loan Approval (SKAN)
|
**Field Name:** `skan_loan_credit`
**Type:** metric |
| Cost per Unique Loan Approval (SKAN)
|
**Field Name:** `skan_cost_per_loan_credit`
**Type:** metric |
| Unique Loan Approval Rate (%) (SKAN)
|
**Field Name:** `skan_loan_credit_rate`
**Type:** metric |
| Total Loan Approval (SKAN)
|
**Field Name:** `skan_total_loan_credit`
**Type:** metric |
| Cost per Loan Approval (SKAN)
|
**Field Name:** `skan_cost_per_total_loan_credit`
**Type:** metric |
| Unique Loan Disbursement (SKAN)
|
**Field Name:** `skan_loan_disbursement`
**Type:** metric |
| Cost per Unique Loan Disbursement (SKAN)
|
**Field Name:** `skan_cost_per_loan_disbursement`
**Type:** metric |
| Unique Loan Disbursement Rate (%) (SKAN)
|
**Field Name:** `skan_loan_disbursement_rate`
**Type:** metric |
| Total Loan Disbursement (SKAN)
|
**Field Name:** `skan_total_loan_disbursement`
**Type:** metric |
| Cost per Loan Disbursement (SKAN)
|
**Field Name:** `skan_cost_per_total_loan_disbursement`
**Type:** metric |
| Unique Login (SKAN)
|
**Field Name:** `skan_login`
**Type:** metric |
| Cost per Unique Login (SKAN)
|
**Field Name:** `skan_cost_per_login`
**Type:** metric |
| Uni que Login Rate (%) (SKAN)
|
**Field Name:** `skan_login_rate`
**Type:** metric |
| Total Login (SKAN)
|
**Field Name:** `skan_total_login`
**Type:** metric |
| Cost per Login (SKAN)
|
**Field Name:** `skan_cost_per_total_login`
**Type:** metric |
| Unique Rate (SKAN)
|
**Field Name:** `skan_ratings`
**Type:** metric |
| Cost per Unique Rate (SKAN)
|
**Field Name:** `skan_cost_per_ratings`
**Type:** metric |
| Unique Rate Rate (%) (SKAN)
|
**Field Name:** `skan_ratings_rate`
**Type:** metric |
| Total Rate (SKAN)
|
**Field Name:** `skan_total_ratings`
**Type:** metric |
| Cost per Rate (SKAN)
|
**Field Name:** `skan_cost_per_total_ratings`
**Type:** metric |
| Total Rate Value (SKAN)
|
**Field Name:** `skan_total_ratings_value`
**Type:** metric |
| Unique Search (SKAN)
|
**Field Name:** `skan_search`
**Type:** metric |
| Cost per Unique Search (SKAN)
|
**Field Name:** `skan_cost_per_search`
**Type:** metric |
| Unique Search Rate (%) (SKAN)
|
**Field Name:** `skan_search_rate`
**Type:** metric |
| Total Search (SKAN)
|
**Field Name:** `skan_total_search`
**Type:** metric |
| Cost per Search (SKAN)
|
**Field Name:** `skan_cost_per_total_search`
**Type:** metric |
| Unique Start Trial (SKAN)
|
**Field Name:** `skan_start_trial`
**Type:** metric |
| Cost per Unique Start Trial (SKAN)
|
**Field Name:** `skan_cost_per_start_trial`
**Type:** metric |
| Unique Start Trial Rate (%) (SKAN)
|
**Field Name:** `skan_start_trial_rate`
**Type:** metric |
| Total Start Trial (SKAN)
|
**Field Name:** `skan_total_start_trial`
**Type:** metric |
| Cost per Start Trial (SKAN)
|
**Field Name:** `skan_cost_per_total_start_trial`
**Type:** metric |
| Unique Subscribe (SKAN)
|
**Field Name:** `skan_subscribe`
**Type:** metric |
| Cost per Unique Subscribe (SKAN)
|
**Field Name:** `skan_cost_per_subscribe`
**Type:** metric |
| Unique Subscribe Rate (%) (SKAN)
|
**Field Name:** `skan_subscribe_rate`
**Type:** metric |
| Total Subscribe (SKAN)
|
**Field Name:** `skan_total_subscribe`
**Type:** metric |
| Cost per Subscribe (SKAN)
|
**Field Name:** `skan_cost_per_total_subscribe`
**Type:** metric |
| Total Subscribe Value (SKAN)
|
**Field Name:** `skan_total_subscribe_value`
**Type:** metric |
### Offline
| | |
| -------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| Payments completed (offline)
|
**Field Name:** `offline_shopping_events`
**Type:** metric |
| Cost per complete payment (offline)
|
**Field Name:** `cost_per_offline_shopping_event`
**Type:** metric |
| Unique payment completion rate (offline)
|
**Field Name:** `offline_shopping_event_rate`
**Type:** metric |
| Value per complete payment (offline)
|
**Field Name:** `value_per_offline_shopping_event`
**Type:** metric |
| Payment completion value (offline)
|
**Field Name:** `offline_shopping_events_value`
**Type:** metric |
| Payment completion ROAS (offline)
|
**Field Name:** `offline_shopping_events_roas`
**Type:** metric |
| Contacts (offline)
|
**Field Name:** `offline_contact_events`
**Type:** metric |
| Cost per contact (offline)
|
**Field Name:** `cost_per_offline_contact_event`
**Type:** metric |
| Unique contact rate (offline)
|
**Field Name:** `offline_contact_event_rate`
**Type:** metric |
| Value per contact (offline)
|
**Field Name:** `value_per_offline_contact_event`
**Type:** metric |
| Contact value (offline)
|
**Field Name:** `offline_contact_events_value`
**Type:** metric |
| Subscriptions (offline)
|
**Field Name:** `offline_subscribe_events`
**Type:** metric |
| Cost per subscription (offline)
|
**Field Name:** `cost_per_offline_subscribe_event`
**Type:** metric |
| Unique subscription rate (offline)
|
**Field Name:** `offline_subscribe_event_rate`
**Type:** metric |
| Value per subscription (offline)
|
**Field Name:** `value_per_offline_subscribe_event`
**Type:** metric |
| Subscription value (offline)
|
**Field Name:** `offline_subscribe_events_value`
**Type:** metric |
| Form submissions (offline)
|
**Field Name:** `offline_form_events`
**Type:** metric |
| Cost per form submitted (offline)
|
**Field Name:** `cost_per_offline_form_event`
**Type:** metric |
| Unique form submission rate (offline)
|
**Field Name:** `offline_form_event_rate`
**Type:** metric |
| Value per form submitted (offline)
|
**Field Name:** `value_per_offline_form_event`
**Type:** metric |
| Form submission value (offline)
|
**Field Name:** `offline_form_events_value`
**Type:** metric |
| Payment info adds (offline)
|
**Field Name:** `offline_add_payment_info_events`
**Type:** metric |
| Cost per payment info add (offline)
|
**Field Name:** `cost_per_offline_add_payment_info_event`
**Type:** metric |
| Unique payment info add rate (offline)
|
**Field Name:** `offline_add_payment_info_event_rate`
**Type:** metric |
| Value per payment info add (offline)
|
**Field Name:** `value_per_offline_add_payment_info_event`
**Type:** metric |
| Payment info add value (offline)
|
**Field Name:** `offline_add_payment_info_events_value`
**Type:** metric |
| Adds to cart (offline)
|
**Field Name:** `offline_add_to_cart_events`
**Type:** metric |
| Cost per add to cart (offline)
|
**Field Name:** `cost_per_offline_add_to_cart_event`
**Type:** metric |
| Unique add to cart rate (offline)
|
**Field Name:** `offline_add_to_cart_event_rate`
**Type:** metric |
| Value per add to cart (offline)
|
**Field Name:** `value_per_offline_add_to_cart_event`
**Type:** metric |
| Add to cart value (offline)
|
**Field Name:** `offline_add_to_cart_events_value`
**Type:** metric |
| Adds to wishlist (offline)
|
**Field Name:** `offline_add_to_wishlist_events`
**Type:** metric |
| Cost per add to wishlist (offline)
|
**Field Name:** `cost_per_offline_add_to_wishlist_event`
**Type:** metric |
| Unique add to wishlist rate (offline)
|
**Field Name:** `offline_add_to_wishlist_event_rate`
**Type:** metric |
| Value per add to wishlist (offline)
|
**Field Name:** `value_per_offline_add_to_wishlist_event`
**Type:** metric |
| Add to wishlist value (offline)
|
**Field Name:** `offline_add_to_wishlist_events_value`
**Type:** metric |
| Button clicks (offline)
|
**Field Name:** `offline_click_button_events`
**Type:** metric |
| Cost per button click (offline)
|
**Field Name:** `cost_per_offline_click_button_event`
**Type:** metric |
| Unique button click rate (offline)
|
**Field Name:** `offline_click_button_event_rate`
**Type:** metric |
| Value per button click (offline)
|
**Field Name:** `value_per_offline_click_button_event`
**Type:** metric |
| Button click value (offline)
|
**Field Name:** `offline_click_button_events_value`
**Type:** metric |
| Registrations completed (offline)
|
**Field Name:** `offline_complete_registration_events`
**Type:** metric |
| Cost per complete registration (offline)
|
**Field Name:** `cost_per_offline_complete_registration_event`
**Type:** metric |
| Unique registration completion rate (offline)
|
**Field Name:** `offline_complete_registration_event_rate`
**Type:** metric |
| Value per complete registration (offline)
|
**Field Name:** `value_per_offline_complete_registration_event`
**Type:** metric |
| Registration completion value (offline)
|
**Field Name:** `offline_complete_registration_events_value`
**Type:** metric |
| Downloads (offline)
|
**Field Name:** `offline_download_events`
**Type:** metric |
| Cost per download (offline)
|
**Field Name:** `cost_per_offline_download_event`
**Type:** metric |
| Unique download rate (offline)
|
**Field Name:** `offline_download_event_rate`
**Type:** metric |
| Value per download (offline)
|
**Field Name:** `value_per_offline_download_event`
**Type:** metric |
| Download value (offline)
|
**Field Name:** `offline_download_events_value`
**Type:** metric |
| Checkouts initiated (offline)
|
**Field Name:** `offline_initiate_checkout_events`
**Type:** metric |
| Cost per checkout initiated (offline)
|
**Field Name:** `cost_per_offline_initiate_checkout_event`
**Type:** metric |
| Unique checkout initiation rate (offline)
|
**Field Name:** `offline_initiate_checkout_event_rate`
**Type:** metric |
| Value per checkout initiated (offline)
|
**Field Name:** `value_per_offline_initiate_checkout_event`
**Type:** metric |
| Checkout initiation value (offline)
|
**Field Name:** `offline_initiate_checkout_events_value`
**Type:** metric |
| Orders placed (offline)
|
**Field Name:** `offline_place_order_events`
**Type:** metric |
| Cost per order placed (offline)
|
**Field Name:** `cost_per_offline_place_order_event`
**Type:** metric |
| Unique orders placed rate (offline)
|
**Field Name:** `offline_place_order_event_rate`
**Type:** metric |
| Value per order placed (offline)
|
**Field Name:** `value_per_offline_place_order_event`
**Type:** metric |
| Orders placed value (offline)
|
**Field Name:** `offline_place_order_events_value`
**Type:** metric |
| Searches (offline)
|
**Field Name:** `offline_search_events`
**Type:** metric |
| Cost per search (offline)
|
**Field Name:** `cost_per_offline_search_event`
**Type:** metric |
| Unique search rate (offline)
|
**Field Name:** `offline_search_event_rate`
**Type:** metric |
| Value per search (offline)
|
**Field Name:** `value_per_offline_search_event`
**Type:** metric |
| Search value (offline)
|
**Field Name:** `offline_search_events_value`
**Type:** metric |
| Content views (offline)
|
**Field Name:** `offline_view_content_events`
**Type:** metric |
| Cost per content view (offline)
|
**Field Name:** `cost_per_offline_view_content_event`
**Type:** metric |
| Unique content view rate (offline)
|
**Field Name:** `offline_view_content_event_rate`
**Type:** metric |
| Value per content view (offline)
|
**Field Name:** `value_per_offline_view_content_event`
**Type:** metric |
| Content view value (offline)
|
**Field Name:** `offline_view_content_events_value`
**Type:** metric |
| ROAS (Shop)
|
**Field Name:** `onsite_shopping_roas`
**Type:** metric |
| Purchases (Shop)
|
**Field Name:** `onsite_shopping`
**Type:** metric |
| Cost per purchase (Shop)
|
**Field Name:** `cost_per_onsite_shopping`
**Type:** metric |
| Purchase rate (Shop) (%)
|
**Field Name:** `onsite_shopping_rate`
**Type:** metric |
| Average order value (Shop)
|
**Field Name:** `value_per_onsite_shopping`
**Type:** metric |
| Gross revenue (Shop)
|
**Field Name:** `total_onsite_shopping_value`
**Type:** metric |
| Checkouts initiated (Shop)
|
**Field Name:** `onsite_initiate_checkout_count`
**Type:** metric |
| Cost per checkout initiated (Shop)
|
**Field Name:** `cost_per_onsite_initiate_checkout_count`
**Type:** metric |
| Checkout initiation rate (Shop) (%)
|
**Field Name:** `onsite_initiate_checkout_count_rate`
**Type:** metric |
| Value per checkout initiated (Shop)
|
**Field Name:** `value_per_onsite_initiate_checkout_count`
**Type:** metric |
| Checkout initiation value (Shop)
|
**Field Name:** `total_onsite_initiate_checkout_count_value`
**Type:** metric |
| Product page views (Shop)
|
**Field Name:** `onsite_on_web_detail`
**Type:** metric |
| Cost per product page view (Shop)
|
**Field Name:** `cost_per_onsite_on_web_detail`
**Type:** metric |
| Product page view rate (Shop) (%)
|
**Field Name:** `onsite_on_web_detail_rate`
**Type:** metric |
| Value per product page view (Shop)
|
**Field Name:** `value_per_onsite_on_web_detail`
**Type:** metric |
| Product page view value (Shop)
|
**Field Name:** `total_onsite_on_web_detail_value`
**Type:** metric |
| Add to cart (Shop)
|
**Field Name:** `onsite_on_web_cart`
**Type:** metric |
| Cost per add to cart (Shop)
|
**Field Name:** `cost_per_onsite_on_web_cart`
**Type:** metric |
| Add to cart rate (Shop) (%)
|
**Field Name:** `onsite_on_web_cart_rate`
**Type:** metric |
| Value per add to cart (Shop)
|
**Field Name:** `value_per_onsite_on_web_cart`
**Type:** metric |
| Add to cart value (Shop)
|
**Field Name:** `total_onsite_on_web_cart_value`
**Type:** metric |
### Interactive Add On
| | |
| ------------------------------------------------ | ----------------------------------------------------------------------------------------- |
| Interactive Add On Impressions
|
**Field Name:** `interactive_add_on_impressions`
**Type:** metric |
| Interactive Add On Destination Clicks
|
**Field Name:** `interactive_add_on_destination_clicks`
**Type:** metric |
| Interactive Add On Activity Clicks
|
**Field Name:** `interactive_add_on_activity_clicks`
**Type:** metric |
| Interactive Add On Option A Clicks
|
**Field Name:** `interactive_add_on_option_a_clicks`
**Type:** metric |
| Interactive Add On Option B Clicks
|
**Field Name:** `interactive_add_on_option_b_clicks`
**Type:** metric |
| Countdown Sticker Recall Clicks
|
**Field Name:** `countdown_sticker_recall_clicks`
**Type:** metric |
### Live Metrics
| | |
| ------------------------------- | ------------------------------------------------------------------------ |
| Live Views
|
**Field Name:** `live_views`
**Type:** metric |
| Live Unique Views
|
**Field Name:** `live_unique_views`
**Type:** metric |
| Live Effective Views
|
**Field Name:** `live_effective_views`
**Type:** metric |
| Live Product Clicks
|
**Field Name:** `live_product_clicks`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
Google Ads metrics & dimensions
LinkedIn Ads metrics & dimensions
# TikTok Ads Troubleshooting
Source: https://support.detrics.io/data-source/tiktok-ads/troubleshooting
Complete troubleshooting guide for TikTok Ads integration
**Last updated:** August 14, 2025
Having trouble with your TikTok Ads integration? This guide will help you diagnose and resolve the most common issues.
## TikTok Server Instability
### Understanding TikTok's API Limitations
**Error message:** "⚠️ TikTok servers are experiencing high load"
TikTok's API can become unstable when processing certain types of data requests, particularly:
**Large Data Requests:**
* **Ad-level data** with extensive timeframes
* **Hourly or daily aggregations** over long periods
* **Multiple accounts** with detailed breakdowns
### Quick Solutions
When you encounter this error, try these solutions in order:
**Start with a smaller date range:**
* Instead of 6 months, try 1 month
* For hourly data, limit to 7 days
* For daily data, limit to 30 days
**Use higher-level aggregations:**
* Campaign level instead of Ad level
* Ad Group level instead of Ad level
* This significantly reduces API load
**Adjust your time grouping:**
* Switch from "Hourly" to "Daily"
* Switch from "Daily" to "All Time"
* Use "Weekly" or "Monthly" for long timeframes
**For large datasets, create multiple queries:**
* Split by date ranges (e.g., monthly queries)
* Split by account (one account per query)
* Combine results afterward in your spreadsheet
**Still having issues?** If none of these solutions work, please try again in a few hours. These server instability issues typically last from a few hours to 24-48 hours in the most extreme cases.
### Why This Happens
TikTok's API has several limitations that can trigger this error:
| Factor | Impact | Solution |
| ----------------------------- | ------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
| **Random TikTok instability** | TikTok's servers occasionally fail to process requests regardless of query complexity | Wait and retry in a few hours |
| **Ad-level complexity** | Each ad requires multiple API calls | Use Campaign or Ad Group level |
| **Long timeframes** | Exponentially more data to process | Limit to 30-90 days |
| **Granular time aggregation** | Hourly/daily creates more data points | Use weekly/monthly for long periods |
| **Multiple breakdowns** | Each dimension multiplies data volume | Reduce dimensions temporarily (e.g., age, gender, country, platform, device) |
### Best Practices to Avoid This Error
To avoid encountering this instability, we recommend implementing a **Historical + Dynamic sheet strategy**:
#### The 3-Sheet Strategy
Set up three sheets to separate your data:
1. **"TikTok Ads Combined"** - Your main reporting sheet with all data
2. **"TikTok Ads Dynamic"** - Recent data that updates daily
3. **"TikTok Ads Historical"** - Archived data that doesn't change
#### How to Implement This Strategy
Export all your historical data (e.g., all 2024 data and 2025 data up to the previous month) to the "TikTok Ads Historical" sheet. This data is "golden" - it won't change because TikTok's attribution windows are typically shorter.
Create a smaller query in "TikTok Ads Dynamic" that only pulls recent data (from
the previous month onwards). This smaller timeframe rarely triggers TikTok's
instability errors.
In your "TikTok Ads Combined" sheet, use this formula to merge both datasets:
```
=QUERY({
'TikTok Ads Historical'!A2:Z;
'TikTok Ads Dynamic'!A2:Z
}, "SELECT * WHERE Col1 is not null", 0)
```
This gives you complete data without the load issues.
Every 6 months, or when you notice instability errors becoming more frequent, move older data from Dynamic to Historical. This keeps your dynamic query small and fast.
**Example:** If you have a 2-year ad-level daily query that fails:
* Historical sheet: All data up to June 2025
* Dynamic sheet: July 2025 onwards
* Combined sheet: Merges both for complete reporting
When you encounter issues again in 1-2 years, simply repeat this optimization process.
**Need help implementing the 3-sheet strategy?** Our support team can guide
you through the setup process and help optimize your TikTok Ads queries for
maximum stability. Reach out to [support@detrics.io](mailto:support@detrics.io) with your specific use case
and we'll provide personalized recommendations.
## Common Issues & Solutions
**Problem**: Can't connect TikTok Ads account
**Solutions**:
* Ensure you have admin access to the TikTok Ads account
* Check if your TikTok Ads account is active and not suspended
* Try disconnecting and reconnecting your account
**Problem**: Some metrics or dimensions are missing
**Solutions**:
* Verify your account has the necessary permissions
* Check if the data exists in TikTok Ads Manager first
* Some metrics may not be available for certain time periods
**Problem**: Getting rate limit errors
**Solutions**:
* Reduce the frequency of your scheduled queries
* Split large queries into smaller ones
* Wait a few minutes between manual query executions
**Problem**: Can't pull data for certain date ranges
**Solutions**:
* TikTok has a 30-day limit for daily aggregation
* Hourly data is limited to 1 day
* Use "All Time" aggregation for longer periods
**Need help?** If errors persist after following these steps, please reach out
to [support@detrics.io](mailto:support@detrics.io)
# TikTok Organic Metrics & Dimensions
Source: https://support.detrics.io/data-source/tiktok-organic/fields
Complete reference for TikTok Organic dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for TikTok Organic data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your TikTok Organic data.
### Profile
| | |
| ---------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| Username
| Username of TikTok account
**Field Name:** `username`
**Type:** dimension |
| Display name
| Display name for TikTok account
**Field Name:** `display_name`
**Type:** dimension |
| Profile image URL
| The URL link to profile image of the TikTok account
**Field Name:** `profile_image_url`
**Type:** dimension |
| Bio description
| Bio description of the TikTok account
**Field Name:** `bio_description`
**Type:** dimension |
| Profile deep link
| Deep link to the TikTok profile
**Field Name:** `profile_deep_link`
**Type:** dimension |
| Is verified
| Whether the TikTok account is verified
**Field Name:** `is_verified`
**Type:** dimension |
| Open ID
| TikTok open ID for the account
**Field Name:** `open_id`
**Type:** dimension |
### Video
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------- |
| Video ID
| Unique identifier for the video
**Field Name:** `video_id`
**Type:** dimension |
| Caption
| The title/caption for the video
**Field Name:** `video_title`
**Type:** dimension |
| Video description
| The description for the video
**Field Name:** `video_description`
**Type:** dimension |
| Create date
| Date when the video was posted
**Field Name:** `create_date`
**Type:** dimension |
| Create datetime
| Date and time when the video was posted
**Field Name:** `create_datetime`
**Type:** dimension |
| Thumbnail URL
| Preview thumbnail URL for the video
**Field Name:** `thumbnail_url`
**Type:** dimension |
| Share URL
| A shareable URL for the video
**Field Name:** `share_url`
**Type:** dimension |
| Embed URL
| An embeddable URL for the video
**Field Name:** `embed_url`
**Type:** dimension |
### Comments
| | |
| -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Comment ID
| Unique identifier for the comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_id`
**Type:** dimension |
| Comment Text
| Text content of the comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_text`
**Type:** dimension |
| Comment Author Username
| Username of the account that wrote the comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_username`
**Type:** dimension |
| Comment Author Display Name
| Display name of the account that wrote the comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_display_name`
**Type:** dimension |
| Comment Create Date
| Date the comment was created. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_create_date`
**Type:** dimension |
| Comment Create Datetime
| Date and time the comment was created. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_create_datetime`
**Type:** dimension |
| Comment Video ID
| Identifier of the video the comment was posted on. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_video_id`
**Type:** dimension |
| Comment Status
| Visibility status of the comment (PUBLIC or HIDDEN). Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_status`
**Type:** dimension |
| Comment Is Reply
| Whether this comment is a reply to another comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_is_reply`
**Type:** dimension |
| Comment Is Pinned
| Whether the video owner pinned this comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_is_pinned`
**Type:** dimension |
| Comment Liked By Owner
| Whether the video owner liked this comment. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_liked_by_owner`
**Type:** dimension |
| Comment By Owner
| Whether the comment was written by the video owner. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_by_owner`
**Type:** dimension |
### Discovery
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Keyword
| A trending or related TikTok search keyword. Use the Country Code and Keyword filters to control the results.
**Field Name:** `discovery_keyword`
**Type:** dimension |
| Rank
| Position of the keyword in the trending / related ranking (1 = most prominent).
**Field Name:** `discovery_rank`
**Type:** dimension |
| Country Code
| Country the keywords are ranked for. Set it with a Country Code filter (defaults to US).
**Field Name:** `discovery_country_code`
**Type:** dimension |
| Keyword Type
| Whether the keyword is "trending" (top searches) or "related" (returned when you add a Keyword filter).
**Field Name:** `discovery_type`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your TikTok Organic campaigns.
### Profile
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
| Current followers
| Current total number of accounts following this profile
**Field Name:** `follower_count`
**Type:** metric |
| Following count
| Total number of accounts this profile is following
**Field Name:** `following_count`
**Type:** metric |
| Total likes received
| Total number of likes received across all videos
**Field Name:** `total_likes_received`
**Type:** metric |
| Total video count
| Total number of videos published by the account
**Field Name:** `total_video_count`
**Type:** metric |
### Video
| | |
| ------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Video views
| The total number of times the video has been viewed
**Field Name:** `video_views`
**Type:** metric |
| Likes
| The total number of likes the video has received
**Field Name:** `video_likes`
**Type:** metric |
| Comments
| The total number of comments the video has received
**Field Name:** `video_comments`
**Type:** metric |
| Shares
| The total number of times the video has been shared
**Field Name:** `video_shares`
**Type:** metric |
| Video duration (s)
| Duration of the video, in seconds
**Field Name:** `video_duration_sec`
**Type:** metric |
| Video duration (min)
| Duration of the video, in minutes
**Field Name:** `video_duration_min`
**Type:** metric |
| Video Reach
| Number of unique people who watched the video at least once. Requires a TikTok Business account.
**Field Name:** `video_reach`
**Type:** metric |
| Video Saves
| Number of times the video was added to Favorites (saves). Requires a TikTok Business account.
**Field Name:** `video_saves`
**Type:** metric |
| Video Total Time Watched (sec)
| Total time viewers spent watching the video, in seconds. Requires a TikTok Business account.
**Field Name:** `video_total_time_watched`
**Type:** metric |
| Video Average Time Watched (sec)
| Average time viewers spent watching the video, in seconds. Requires a TikTok Business account.
**Field Name:** `video_average_time_watched`
**Type:** metric |
| Video Full Watch Rate
| Percentage of viewers who watched the video to the end. Requires a TikTok Business account.
**Field Name:** `video_full_watch_rate`
**Type:** metric |
| Video New Followers
| New followers gained from this video. Requires a TikTok Business account.
**Field Name:** `video_new_followers`
**Type:** metric |
| Video Profile Views
| Profile views driven by this video. Requires a TikTok Business account.
**Field Name:** `video_profile_views`
**Type:** metric |
| Video Website Clicks
| Website button clicks driven by this video. Requires a TikTok Business account.
**Field Name:** `video_website_clicks`
**Type:** metric |
| Video Email Clicks
| Email button clicks driven by this video. Requires a TikTok Business account.
**Field Name:** `video_email_clicks`
**Type:** metric |
| Video Phone Number Clicks
| Phone number button clicks driven by this video. Requires a TikTok Business account.
**Field Name:** `video_phone_clicks`
**Type:** metric |
| Video Address Clicks
| Address button clicks driven by this video. Requires a TikTok Business account.
**Field Name:** `video_address_clicks`
**Type:** metric |
| Video App Download Clicks
| App download button clicks driven by this video. Requires a TikTok Business account.
**Field Name:** `video_app_download_clicks`
**Type:** metric |
| Video Lead Submissions
| Lead form submissions driven by this video. Requires a TikTok Business account.
**Field Name:** `video_lead_submissions`
**Type:** metric |
| Media Type
| Post type: VIDEO or PHOTO.
**Field Name:** `video_media_type`
**Type:** metric |
| Is Ad (Spark)
| Whether the post was boosted as a Spark Ad.
**Field Name:** `video_is_ad`
**Type:** metric |
| Video Impression Sources
| Traffic sources for the video as a percentage breakdown (e.g. "For You: 76%, Follow: 24%"). Requires a TikTok Business account.
**Field Name:** `video_impression_sources`
**Type:** metric |
| Video Audience Countries
| Viewer country distribution as percentages (e.g. "US: 73%, CA: 5%"). Requires a TikTok Business account.
**Field Name:** `video_audience_countries`
**Type:** metric |
| Video Audience Cities
| Viewer city distribution as percentages. Requires a TikTok Business account.
**Field Name:** `video_audience_cities`
**Type:** metric |
| Video Audience Genders
| Viewer gender distribution as percentages (Female/Male/Other). Requires a TikTok Business account.
**Field Name:** `video_audience_genders`
**Type:** metric |
| Video Audience Types
| Viewer type distribution (new vs returning viewers, followers vs non-followers) as percentages. Requires a TikTok Business account.
**Field Name:** `video_audience_types`
**Type:** metric |
| Video View Retention Curve
| Retention curve: percentage of viewers still watching at each second (e.g. "0s:100%, 1s:82%"). Requires a TikTok Business account.
**Field Name:** `video_view_retention`
**Type:** metric |
| Video Like Timeline
| Like timeline: cumulative like percentage at each second of the video. Requires a TikTok Business account.
**Field Name:** `video_like_timeline`
**Type:** metric |
### Account Insights
| | |
| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Account Followers
| Number of followers on the account for the day. Requires a TikTok Business account; only the last 60 days are available.
**Field Name:** `account_followers_count`
**Type:** metric |
| Account Profile Views
| Number of profile views for the day. Requires a TikTok Business account; only the last 60 days are available.
**Field Name:** `account_profile_views`
**Type:** metric |
| Account Video Views
| Total video views across the account for the day. Requires a TikTok Business account; only the last 60 days are available.
**Field Name:** `account_video_views`
**Type:** metric |
| Account Likes
| Total likes across the account for the day. Requires a TikTok Business account; only the last 60 days are available.
**Field Name:** `account_likes`
**Type:** metric |
| Account Comments
| Total comments across the account for the day. Requires a TikTok Business account; only the last 60 days are available.
**Field Name:** `account_comments`
**Type:** metric |
| Account Shares
| Total shares across the account for the day. Requires a TikTok Business account; only the last 60 days are available.
**Field Name:** `account_shares`
**Type:** metric |
| Account Unique Video Views
| Unique viewers of the account’s videos for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_unique_video_views`
**Type:** metric |
| Account New Followers
| Followers gained for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_new_followers`
**Type:** metric |
| Account Lost Followers
| Followers lost for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_lost_followers`
**Type:** metric |
| Account Net Follower Growth
| Net follower growth for the day (gained minus lost). Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_net_follower_growth`
**Type:** metric |
| Account Engaged Audience
| Unique accounts that engaged for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_engaged_audience`
**Type:** metric |
| Account Bio Link Clicks
| Bio link clicks for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_bio_link_clicks`
**Type:** metric |
| Account Email Clicks
| Email button clicks for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_email_clicks`
**Type:** metric |
| Account Phone Number Clicks
| Phone number button clicks for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_phone_clicks`
**Type:** metric |
| Account Address Clicks
| Address button clicks for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_address_clicks`
**Type:** metric |
| Account App Download Clicks
| App download button clicks for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_app_download_clicks`
**Type:** metric |
| Account Lead Submissions
| Lead form submissions for the day. Requires a TikTok Business account; last 60 days only.
**Field Name:** `account_lead_submissions`
**Type:** metric |
| Audience Active Hours
| Active hours of the audience as "HH:00=count" pairs (UTC). Requires a TikTok Business account.
**Field Name:** `account_audience_activity`
**Type:** metric |
| Audience Countries
| Audience country distribution as percentages for the window. Requires a TikTok Business account.
**Field Name:** `audience_countries`
**Type:** metric |
| Audience Cities
| Audience city distribution as percentages for the window. Requires a TikTok Business account.
**Field Name:** `audience_cities`
**Type:** metric |
| Audience Genders
| Audience gender distribution as percentages for the window. Requires a TikTok Business account.
**Field Name:** `audience_genders`
**Type:** metric |
| Audience Ages
| Audience age distribution as percentages for the window. Requires a TikTok Business account.
**Field Name:** `audience_ages`
**Type:** metric |
### Comments
| | |
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Comment Likes
| Number of likes the comment has received. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_likes`
**Type:** metric |
| Comment Replies
| Number of replies the comment has received. Comments are returned for videos posted within the selected date range.
**Field Name:** `comment_replies`
**Type:** metric |
***
## Related
Browse all platforms
Instagram Insights metrics & dimensions
Facebook Insights metrics & dimensions
Facebook Public Data metrics & dimensions
# VTEX Metrics & Dimensions
Source: https://support.detrics.io/data-source/vtex/fields
Complete reference for VTEX store dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for VTEX data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your VTEX data.
### Orders
| | |
| ----------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Order ID
| Unique identifier for the order
**Field Name:** `orderId`
**Type:** dimension |
| Order Sequence
| Sequential number of the order
**Field Name:** `orderSequence`
**Type:** dimension |
| Status
| Current status of the order
**Field Name:** `status`
**Type:** dimension |
| Status Description
| Human-readable description of the order status
**Field Name:** `statusDescription`
**Type:** dimension |
| Client Name
| Name of the customer who placed the order
**Field Name:** `clientName`
**Type:** dimension |
| Payment Names
| Payment method names used in the order
**Field Name:** `paymentNames`
**Type:** dimension |
| Sales Channel
| Sales channel through which the order was placed
**Field Name:** `salesChannel`
**Type:** dimension |
| Origin
| Origin of the order (e.g., Marketplace, Fulfillment)
**Field Name:** `origin`
**Type:** dimension |
| Affiliate ID
| Identifier of the affiliate associated with the order
**Field Name:** `affiliateId`
**Type:** dimension |
| Currency Code
| Currency code used in the order
**Field Name:** `currencyCode`
**Type:** dimension |
| Hostname
| Store hostname where the order was placed
**Field Name:** `hostname`
**Type:** dimension |
| Order Is Complete
| Whether the order is fully complete
**Field Name:** `orderIsComplete`
**Type:** dimension |
| Rates and Benefits
| Promotions and benefits applied to the order (VTEX "Tasas y beneficios"), joined by "; ". Note: this and the other detail fields below are fetched per order and can noticeably slow down large date ranges.
**Field Name:** `ratesAndBenefits`
**Type:** dimension |
| Order Group
| VTEX order group id (groups orders split from one checkout).
**Field Name:** `orderGroup`
**Type:** dimension |
| Items Total
| Gross value of the order items (before discounts).
**Field Name:** `orderItemsTotal`
**Type:** dimension |
| Discounts Total
| Total discounts applied to the order (usually negative).
**Field Name:** `orderDiscountsTotal`
**Type:** dimension |
| Shipping Total
| Total shipping charge for the order.
**Field Name:** `orderShippingTotal`
**Type:** dimension |
| Tax Total
| Total tax charged on the order.
**Field Name:** `orderTaxTotal`
**Type:** dimension |
### Order Dates
| | |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
| Creation Date
| Date the order was created
**Field Name:** `creationDate`
**Type:** dimension |
| Authorized Date
| Date the order payment was authorized
**Field Name:** `authorizedDate`
**Type:** dimension |
| Payment Approved Date
| Date the payment was approved
**Field Name:** `paymentApprovedDate`
**Type:** dimension |
| Ready For Handling Date
| Date the order was ready for handling
**Field Name:** `readyForHandlingDate`
**Type:** dimension |
| Last Change Date
| Date of the last change to the order
**Field Name:** `lastChangeDate`
**Type:** dimension |
### Order Shipping & Delivery
| | |
| ---------------------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Shipping Estimated Date
| Estimated shipping delivery date
**Field Name:** `shippingEstimatedDate`
**Type:** dimension |
| Is All Delivered
| Whether all items in the order have been delivered
**Field Name:** `isAllDelivered`
**Type:** dimension |
| Is Any Delivered
| Whether any items in the order have been delivered
**Field Name:** `isAnyDelivered`
**Type:** dimension |
| Shipping City
| Shipping address city.
**Field Name:** `shippingCity`
**Type:** dimension |
| Shipping State
| Shipping address state/province.
**Field Name:** `shippingState`
**Type:** dimension |
| Shipping Postal Code
| Shipping address postal code.
**Field Name:** `shippingPostalCode`
**Type:** dimension |
| Shipping Country
| Shipping address country.
**Field Name:** `shippingCountry`
**Type:** dimension |
| Shipping Neighborhood
| Shipping address neighborhood.
**Field Name:** `shippingNeighborhood`
**Type:** dimension |
| Shipping Receiver Name
| Name of the person receiving the shipment.
**Field Name:** `shippingReceiverName`
**Type:** dimension |
| Shipping Method
| Selected shipping method (SLA).
**Field Name:** `shippingMethod`
**Type:** dimension |
| Delivery Company
| Carrier / delivery company for the shipment.
**Field Name:** `deliveryCompany`
**Type:** dimension |
### Order Marketing
| | |
| ----------------------- | ----------------------------------------------------------------------------------------------------------------------- |
| Coupon
| Coupon code applied to the order.
**Field Name:** `orderCoupon`
**Type:** dimension |
| UTM Source
| Marketing attribution UTM source of the order.
**Field Name:** `orderUtmSource`
**Type:** dimension |
| UTM Medium
| Marketing attribution UTM medium of the order.
**Field Name:** `orderUtmMedium`
**Type:** dimension |
| UTM Campaign
| Marketing attribution UTM campaign of the order.
**Field Name:** `orderUtmCampaign`
**Type:** dimension |
| UTM Partner
| Marketing attribution UTM partner of the order.
**Field Name:** `orderUtmPartner`
**Type:** dimension |
### Order Customer
| | |
| --------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Customer Email
| Customer email (may be masked by VTEX with a "…@ct.vtex.com.br" suffix depending on token permissions).
**Field Name:** `clientEmail`
**Type:** dimension |
| Customer Document
| Customer identity document number (e.g. DNI / CUIT).
**Field Name:** `clientDocument`
**Type:** dimension |
| Customer Document Type
| Type of the customer identity document.
**Field Name:** `clientDocumentType`
**Type:** dimension |
| Customer Phone
| Customer phone number.
**Field Name:** `clientPhone`
**Type:** dimension |
| Corporate Name
| Corporate/company name (for corporate orders).
**Field Name:** `clientCorporateName`
**Type:** dimension |
| Is Corporate
| Whether the order was placed by a corporate customer.
**Field Name:** `clientIsCorporate`
**Type:** dimension |
### Order Items
| | |
| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Item ID
| VTEX item/SKU id of the order line.
**Field Name:** `itemId`
**Type:** dimension |
| Item Name
| Product name of the order line.
**Field Name:** `itemName`
**Type:** dimension |
| Item Product ID
| VTEX product id of the order line.
**Field Name:** `itemProductId`
**Type:** dimension |
| Item Reference ID
| Seller reference id (RefId) of the order line.
**Field Name:** `itemRefId`
**Type:** dimension |
| Item EAN
| EAN/barcode of the order line.
**Field Name:** `itemEan`
**Type:** dimension |
| Item Seller
| Seller id fulfilling the order line.
**Field Name:** `itemSeller`
**Type:** dimension |
| Item Seller SKU
| Seller's SKU code for the order line.
**Field Name:** `itemSellerSku`
**Type:** dimension |
| Item Brand
| Brand name of the order line product.
**Field Name:** `itemBrandName`
**Type:** dimension |
| Item Categories
| Category names of the order line product, joined by "; ".
**Field Name:** `itemCategories`
**Type:** dimension |
| Item Measurement Unit
| Measurement unit of the order line (e.g. "un").
**Field Name:** `itemMeasurementUnit`
**Type:** dimension |
| Item Quantity
| Quantity ordered for the line.
**Field Name:** `itemQuantity`
**Type:** dimension |
| Item Price
| Unit price of the order line.
**Field Name:** `itemPrice`
**Type:** dimension |
| Item List Price
| List (pre-discount) unit price of the order line.
**Field Name:** `itemListPrice`
**Type:** dimension |
| Item Selling Price
| Actual selling unit price of the order line.
**Field Name:** `itemSellingPrice`
**Type:** dimension |
| Item Cost Price
| Cost price of the order line (enables margin analysis).
**Field Name:** `itemCostPrice`
**Type:** dimension |
| Item Tax
| Tax amount on the order line.
**Field Name:** `itemTax`
**Type:** dimension |
| Item Line Total
| Line revenue = selling price × quantity. Use this (not Item Selling Price, which is per-unit) to sum revenue across items.
**Field Name:** `itemLineTotal`
**Type:** dimension |
| Item Line Cost
| Line cost = cost price × quantity. Item Line Total − Item Line Cost gives line margin, and both sum correctly.
**Field Name:** `itemLineCost`
**Type:** dimension |
### Products
| | |
| ------------------------ | --------------------------------------------------------------------------------------------------- |
| Product ID
| Unique identifier for the product
**Field Name:** `productId`
**Type:** dimension |
| Product Name
| Name of the product
**Field Name:** `productName`
**Type:** dimension |
| Brand ID
| Unique identifier for the brand
**Field Name:** `brandId`
**Type:** dimension |
| Brand Name
| Name of the brand
**Field Name:** `brandName`
**Type:** dimension |
| Category ID
| Unique identifier for the category
**Field Name:** `categoryId`
**Type:** dimension |
| Category Name
| Name of the category
**Field Name:** `categoryName`
**Type:** dimension |
### Product Details
| | |
| ------------------------------- | ----------------------------------------------------------------------------------------------------------- |
| Product Reference ID
| External reference ID for the product
**Field Name:** `productRefId`
**Type:** dimension |
| Product Link ID
| URL-friendly identifier for the product
**Field Name:** `productLinkId`
**Type:** dimension |
| Product Description
| Description of the product
**Field Name:** `productDescription`
**Type:** dimension |
| Release Date
| Product release date
**Field Name:** `releaseDate`
**Type:** dimension |
| Product Title
| Title of the product
**Field Name:** `productTitle`
**Type:** dimension |
### SKUs
| | |
| ------------------------------- | -------------------------------------------------------------------------------------------------------- |
| SKU ID
| Unique identifier for the SKU
**Field Name:** `skuId`
**Type:** dimension |
| SKU Product ID
| Product ID associated with this SKU
**Field Name:** `skuProductId`
**Type:** dimension |
| SKU Name
| Name of the SKU
**Field Name:** `skuName`
**Type:** dimension |
| SKU Reference ID
| External reference ID for the SKU
**Field Name:** `skuRefId`
**Type:** dimension |
| SKU Measurement Unit
| Unit of measurement for the SKU
**Field Name:** `skuMeasurementUnit`
**Type:** dimension |
| SKU Is Kit
| Whether the SKU is a kit
**Field Name:** `skuIsKit`
**Type:** dimension |
### Inventory
| | |
| --------------------------- | ----------------------------------------------------------------------------------------------------- |
| Inventory SKU ID
| SKU ID in the inventory context
**Field Name:** `inventorySkuId`
**Type:** dimension |
| Warehouse ID
| Unique identifier for the warehouse
**Field Name:** `warehouseId`
**Type:** dimension |
| Warehouse Name
| Name of the warehouse
**Field Name:** `warehouseName`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your VTEX campaigns.
### Orders
| | |
| ---------------------- | ------------------------------------------------------------------------------------------------ |
| Total Value
| Total monetary value of the order
**Field Name:** `totalValue`
**Type:** metric |
| Total Items
| Total number of items in the order
**Field Name:** `totalItems`
**Type:** metric |
### SKU Pricing
| | |
| --------------------------------- | -------------------------------------------------------------------------------------------------------------- |
| SKU Price
| Current selling price of the SKU
**Field Name:** `skuPrice`
**Type:** metric |
| SKU List Price
| Original list price of the SKU
**Field Name:** `skuListPrice`
**Type:** metric |
| SKU Available Quantity
| Available quantity of the SKU in stock
**Field Name:** `skuAvailableQuantity`
**Type:** metric |
### Inventory
| | |
| ----------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Total Quantity
| Total quantity of inventory
**Field Name:** `inventoryTotalQuantity`
**Type:** metric |
| Reserved Quantity
| Quantity reserved for pending orders
**Field Name:** `inventoryReservedQuantity`
**Type:** metric |
| Available Quantity
| Quantity available for sale
**Field Name:** `inventoryAvailableQuantity`
**Type:** metric |
***
## Related
Browse all platforms
Shopify metrics & dimensions
TiendaNube metrics & dimensions
WooCommerce metrics & dimensions
# WooCommerce Metrics & Dimensions
Source: https://support.detrics.io/data-source/woocommerce/fields
Complete reference for WooCommerce store dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for WooCommerce data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your WooCommerce data.
### Store
| | |
| -------------------- | ---------------------------------------------------------------- |
| Store URL
|
**Field Name:** `store_url`
**Type:** dimension |
### Order
| | |
| ---------------------------- | ------------------------------------------------------------------------ |
| Order Number
|
**Field Name:** `order_number`
**Type:** dimension |
| Order ID
|
**Field Name:** `order_id`
**Type:** dimension |
| Order Parent ID
|
**Field Name:** `order_parent_id`
**Type:** dimension |
| Order Key
|
**Field Name:** `order_key`
**Type:** dimension |
| Order Status
|
**Field Name:** `order_status`
**Type:** dimension |
| Order Currency
|
**Field Name:** `order_currency`
**Type:** dimension |
| Order Created Via
|
**Field Name:** `order_created_via`
**Type:** dimension |
### Order Timestamp
| | |
| --------------------------------------- | ----------------------------------------------------------------------------------- |
| Order Created Date
|
**Field Name:** `order_created_date`
**Type:** dimension |
| Order Created Datetime
|
**Field Name:** `order_created_datetime`
**Type:** dimension |
| Order Modified Date
|
**Field Name:** `order_modified_date`
**Type:** dimension |
| Order Modified Datetime
|
**Field Name:** `order_modified_datetime`
**Type:** dimension |
| Order Paid Date
|
**Field Name:** `order_paid_date`
**Type:** dimension |
| Order Paid Datetime
|
**Field Name:** `order_paid_datetime`
**Type:** dimension |
| Order Completed Date
|
**Field Name:** `order_completed_date`
**Type:** dimension |
| Order Completed Datetime
|
**Field Name:** `order_completed_datetime`
**Type:** dimension |
| Order Created Date GMT
|
**Field Name:** `order_created_date_gmt`
**Type:** dimension |
| Order Created Datetime GMT
|
**Field Name:** `order_created_datetime_gmt`
**Type:** dimension |
| Order Modified Date GMT
|
**Field Name:** `order_modified_date_gmt`
**Type:** dimension |
| Order Modified Datetime GMT
|
**Field Name:** `order_modified_datetime_gmt`
**Type:** dimension |
| Order Paid Date GMT
|
**Field Name:** `order_paid_date_gmt`
**Type:** dimension |
| Order Paid Datetime GMT
|
**Field Name:** `order_paid_datetime_gmt`
**Type:** dimension |
| Order Completed Date GMT
|
**Field Name:** `order_completed_date_gmt`
**Type:** dimension |
| Order Completed Datetime GMT
|
**Field Name:** `order_completed_datetime_gmt`
**Type:** dimension |
### Billing
| | |
| --------------------------------- | ----------------------------------------------------------------------------- |
| Billing First Name
|
**Field Name:** `billing_first_name`
**Type:** dimension |
| Billing Last Name
|
**Field Name:** `billing_last_name`
**Type:** dimension |
| Billing Company Name
|
**Field Name:** `billing_company_name`
**Type:** dimension |
| Billing Address Line 1
|
**Field Name:** `billing_address_line_1`
**Type:** dimension |
| Billing Address Line 2
|
**Field Name:** `billing_address_line_2`
**Type:** dimension |
| Billing City
|
**Field Name:** `billing_city`
**Type:** dimension |
| Billing State
|
**Field Name:** `billing_state`
**Type:** dimension |
| Billing Postcode
|
**Field Name:** `billing_postcode`
**Type:** dimension |
| Billing Country Code
|
**Field Name:** `billing_country_code`
**Type:** dimension |
| Billing Email
|
**Field Name:** `billing_email`
**Type:** dimension |
| Billing Phone
|
**Field Name:** `billing_phone`
**Type:** dimension |
### Shipping
| | |
| ---------------------------------- | ------------------------------------------------------------------------------ |
| Shipping First Name
|
**Field Name:** `shipping_first_name`
**Type:** dimension |
| Shipping Last Name
|
**Field Name:** `shipping_last_name`
**Type:** dimension |
| Shipping Company Name
|
**Field Name:** `shipping_company_name`
**Type:** dimension |
| Shipping Address Line 1
|
**Field Name:** `shipping_address_line_1`
**Type:** dimension |
| Shipping Address Line 2
|
**Field Name:** `shipping_address_line_2`
**Type:** dimension |
| Shipping City
|
**Field Name:** `shipping_city`
**Type:** dimension |
| Shipping State
|
**Field Name:** `shipping_state`
**Type:** dimension |
| Shipping Postcode
|
**Field Name:** `shipping_postcode`
**Type:** dimension |
| Shipping Country Code
|
**Field Name:** `shipping_country_code`
**Type:** dimension |
### Payment
| | |
| -------------------------------- | ---------------------------------------------------------------------------- |
| Order is Paid
|
**Field Name:** `order_is_paid`
**Type:** dimension |
| Payment Method ID
|
**Field Name:** `payment_method_id`
**Type:** dimension |
| Payment Method Title
|
**Field Name:** `payment_method_title`
**Type:** dimension |
| Unique Transaction ID
|
**Field Name:** `unique_transaction_id`
**Type:** dimension |
| Prices Include Tax
|
**Field Name:** `prices_include_tax`
**Type:** dimension |
### Customer
| | |
| ------------------------------ | -------------------------------------------------------------------------- |
| Customer ID
|
**Field Name:** `customer_id`
**Type:** dimension |
| Customer IP Address
|
**Field Name:** `customer_ip_address`
**Type:** dimension |
| Customer User Agent
|
**Field Name:** `customer_user_agent`
**Type:** dimension |
| Customer Note
|
**Field Name:** `customer_note`
**Type:** dimension |
### Order Attribution
| | |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| UTM Source
| UTM source parameter (e.g., google, facebook). Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_utm_source`
**Type:** dimension |
| UTM Medium
| UTM medium parameter (e.g., cpc, email, social). Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_utm_medium`
**Type:** dimension |
| UTM Campaign
| UTM campaign name. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_utm_campaign`
**Type:** dimension |
| UTM Content
| UTM content parameter for ad content/variant. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_utm_content`
**Type:** dimension |
| UTM Term
| UTM term parameter for search keywords. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_utm_term`
**Type:** dimension |
| Attribution Source Type
| How the customer found your store: utm, organic, direct, referral, typein, admin, or mobile\_app. Requires WooCommerce 8.5+.
**Field Name:** `attribution_source_type`
**Type:** dimension |
| Attribution Referrer
| Full referrer URL of where the customer came from. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_referrer`
**Type:** dimension |
| Attribution Device Type
| Device type: Mobile, Tablet, Desktop, or Unknown. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_device_type`
**Type:** dimension |
| Session Landing Page
| The first page the customer landed on. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_session_entry`
**Type:** dimension |
| Session Page Views
| Number of pages viewed before purchase. Requires WooCommerce 8.5+ with Order Attribution enabled.
**Field Name:** `attribution_session_pages`
**Type:** dimension |
### Line Item
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Product ID
| The ID of the product sold in the order line item. Requesting any Line Item field returns one row per product within each order.
**Field Name:** `product_id`
**Type:** dimension |
| Product Name
| The name of the product sold in the order line item.
**Field Name:** `product_name`
**Type:** dimension |
| Product SKU
| The SKU of the product (or variation) sold in the order line item.
**Field Name:** `line_item_sku`
**Type:** dimension |
| Product Variation ID
| The variation ID of the product sold, empty for products without variations.
**Field Name:** `product_variation_id`
**Type:** dimension |
| Product Categories
| The product categories of the sold product, comma-separated. Empty for products deleted from the store.
**Field Name:** `product_category`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your WooCommerce campaigns.
### Store Sales Report
| | |
| ---------------------------------- | --------------------------------------------------------------------------- |
| Gross Sales
|
**Field Name:** `gross_sales`
**Type:** metric |
| Net Sales
|
**Field Name:** `net_sales`
**Type:** metric |
| Total Sales
|
**Field Name:** `total_sales`
**Type:** metric |
| Taxes
|
**Field Name:** `taxes`
**Type:** metric |
| Coupons
| Total Discounts
**Field Name:** `coupons`
**Type:** metric |
| Shipping
|
**Field Name:** `shipping`
**Type:** metric |
| Items Sold
|
**Field Name:** `items_sold`
**Type:** metric |
| Customers
|
**Field Name:** `customers`
**Type:** metric |
| Orders
|
**Field Name:** `orders`
**Type:** metric |
| Average Order Value
|
**Field Name:** `average_order_value`
**Type:** metric |
| Average Items Per Order
|
**Field Name:** `average_items_per_order`
**Type:** metric |
### Orders
| | |
| ------------------------------- | ------------------------------------------------------------------------ |
| Order Total
|
**Field Name:** `order_total`
**Type:** metric |
| Order Shipping Total
|
**Field Name:** `order_shipping_total`
**Type:** metric |
| Order Discount Total
|
**Field Name:** `order_discount_total`
**Type:** metric |
| Order Shipping Tax
|
**Field Name:** `order_shipping_tax`
**Type:** metric |
| Order Discount Tax
|
**Field Name:** `order_discount_tax`
**Type:** metric |
| Order Cart Tax
|
**Field Name:** `order_cart_tax`
**Type:** metric |
| Order Total Tax
|
**Field Name:** `order_total_tax`
**Type:** metric |
### Line Item
| | |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Item Quantity
| Number of units of the product sold in the order line item.
**Field Name:** `item_quantity`
**Type:** metric |
| Item Price
| Average unit price of the product (line subtotal divided by quantity), before discounts.
**Field Name:** `item_price`
**Type:** metric |
| Item Total
| Line item revenue after discounts, excluding tax.
**Field Name:** `item_total`
**Type:** metric |
| Item Subtotal
| Line item revenue before discounts, excluding tax.
**Field Name:** `item_subtotal`
**Type:** metric |
| Item Tax
| Tax charged on the order line item.
**Field Name:** `item_tax`
**Type:** metric |
| Item Discount
| Discount applied to the order line item (subtotal minus total).
**Field Name:** `item_discount`
**Type:** metric |
***
## Related
Browse all platforms
Shopify metrics & dimensions
TiendaNube metrics & dimensions
Stripe metrics & dimensions
# X Ads Metrics & Dimensions
Source: https://support.detrics.io/data-source/x-ads/fields
Complete reference for X Ads dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for X Ads data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Looker Studio
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your X Ads data.
### Account
| | |
| ----------------------- | ----------------------------------------------------------------------------------------------------------- |
| Account ID
| The identifier for the selected account/s.
**Field Name:** `account.id`
**Type:** dimension |
| Account Name
| The name of the selected account/s.
**Field Name:** `account.name`
**Type:** dimension |
### Campaign
| | |
| -------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Campaign ID
| Identifier for the campaign.
**Field Name:** `campaign.id`
**Type:** dimension |
| Campaign Name
| Name of the campaign.
**Field Name:** `campaign.name`
**Type:** dimension |
| Frequency Cap
| Frequency cap set for the campaign.
**Field Name:** `campaign.frequency_cap`
**Type:** dimension |
| Funding Instrument ID
| Identifier for the funding instrument associated with the campaign.
**Field Name:** `campaign.funding_instrument_id`
**Type:** dimension |
| Currency
| Currency used for the campaign, associated to it's funding instrument.
**Field Name:** `campaign.currency`
**Type:** dimension |
| Created At
| Timestamp when the campaign was created.
**Field Name:** `campaign.updated_at`
**Type:** dimension |
| Updated At
| Timestamp when the campaign was last updated.
**Field Name:** `campaign.created_at`
**Type:** dimension |
### Campaign Status
| | |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| Servable
| Indicates if the campaign is servable or not.
**Field Name:** `campaign.servable`
**Type:** dimension |
| Effective Status
| Effective status of the campaign.
**Field Name:** `campaign.effective_status`
**Type:** dimension |
| Entity Status
| Status of the campaign entity.
**Field Name:** `campaign.entity_status`
**Type:** dimension |
| Reasons Not Servable
| Reasons why the campaign is not servable.
**Field Name:** `campaign.reasons_not_servable`
**Type:** dimension |
| Duration (days)
| Duration of the campaign in days.
**Field Name:** `campaign.duration_in_days`
**Type:** dimension |
| Standard Delivery
| Indicates if the campaign uses standard delivery.
**Field Name:** `campaign.standard_delivery`
**Type:** dimension |
| Deleted
| Indicates if the campaign is deleted.
**Field Name:** `campaign.deleted`
**Type:** dimension |
### Campaign Budget
| | |
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Daily Budget
| Daily budget amount in campaign's currency.
**Field Name:** `campaign.daily_budget_amount_local_micro`
**Type:** dimension |
| Total Budget
| Total budget amount in campaign's currency..
**Field Name:** `campaign.total_budget_amount_local_micro`
**Type:** dimension |
| Budget Optimization
| Type of budget optimization configured for the campaign: CAMPAIGN, LINE\_ITEM.
**Field Name:** `campaign.budget_optimization`
**Type:** dimension |
### Ad Group
| | |
| --------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Group ID
| Unique identifier for the ad group (line item).
**Field Name:** `line_item.id`
**Type:** dimension |
| Ad Group Name
| Name of the ad group.
**Field Name:** `line_item.name`
**Type:** dimension |
| Campaign ID (Ad Group)
| The campaign ID this ad group belongs to.
**Field Name:** `line_item.campaign_id`
**Type:** dimension |
| Objective
| The optimization objective for the ad group.
**Field Name:** `line_item.objective`
**Type:** dimension |
| Product Type
| The product type of the ad group (PROMOTED\_TWEETS, etc.).
**Field Name:** `line_item.product_type`
**Type:** dimension |
| Placements
| Where ads will be shown (ALL\_ON\_TWITTER, TWITTER\_TIMELINE, etc.).
**Field Name:** `line_item.placements`
**Type:** dimension |
| Goal
| The goal for the ad group optimization.
**Field Name:** `line_item.goal`
**Type:** dimension |
| Currency
| Currency used for the ad group.
**Field Name:** `line_item.currency`
**Type:** dimension |
| Frequency Cap
| Maximum impressions per user in the duration period.
**Field Name:** `line_item.frequency_cap`
**Type:** dimension |
| Frequency Cap Duration
| Duration in days for the frequency cap.
**Field Name:** `line_item.duration_in_days`
**Type:** dimension |
| Auto Tweet Promotion
| Whether automatic tweet promotion is enabled.
**Field Name:** `line_item.automatic_tweet_promotion`
**Type:** dimension |
| Advertiser Domain
| The advertiser domain for the ad group.
**Field Name:** `line_item.advertiser_domain`
**Type:** dimension |
| Advertiser User ID
| The advertiser user ID.
**Field Name:** `line_item.advertiser_user_id`
**Type:** dimension |
| Ad Group Created At
| When the ad group was created.
**Field Name:** `line_item.created_at`
**Type:** dimension |
| Ad Group Updated At
| When the ad group was last updated.
**Field Name:** `line_item.updated_at`
**Type:** dimension |
| Funding Instrument ID
| The funding instrument associated with the ad group.
**Field Name:** `line_item.funding_instrument_id`
**Type:** dimension |
| Primary Web Event Tag
| Primary web event tag for conversion tracking.
**Field Name:** `line_item.primary_web_event_tag`
**Type:** dimension |
| Android App Store ID
| Android app store identifier for app install campaigns.
**Field Name:** `line_item.android_app_store_identifier`
**Type:** dimension |
| iOS App Store ID
| iOS app store identifier for app install campaigns.
**Field Name:** `line_item.ios_app_store_identifier`
**Type:** dimension |
| Categories
| IAB categories for the ad group.
**Field Name:** `line_item.categories`
**Type:** dimension |
| Creative Source
| Source of creatives (MANUAL, AUTO, etc.).
**Field Name:** `line_item.creative_source`
**Type:** dimension |
### Ad Group Status
| | |
| ------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------- |
| Ad Group Status
| Status of the ad group entity (ACTIVE, PAUSED, etc.).
**Field Name:** `line_item.entity_status`
**Type:** dimension |
| Standard Delivery
| Whether standard delivery is enabled.
**Field Name:** `line_item.standard_delivery`
**Type:** dimension |
| Ad Group Start Time
| When the ad group starts running.
**Field Name:** `line_item.start_time`
**Type:** dimension |
| Ad Group End Time
| When the ad group stops running.
**Field Name:** `line_item.end_time`
**Type:** dimension |
| Ad Group Deleted
| Whether the ad group is deleted.
**Field Name:** `line_item.deleted`
**Type:** dimension |
### Ad Group Bidding
| | |
| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| Bid Strategy
| The bidding strategy (AUTO, TARGET, MAX).
**Field Name:** `line_item.bid_strategy`
**Type:** dimension |
| Bid Amount
| The bid amount in the ad group currency.
**Field Name:** `line_item.bid_amount_local_micro`
**Type:** dimension |
| Target CPA
| Target cost per action.
**Field Name:** `line_item.target_cpa_local_micro`
**Type:** dimension |
| Pay By
| What you pay for (IMPRESSION, APP\_CLICK, etc.).
**Field Name:** `line_item.pay_by`
**Type:** dimension |
### Ad Group Budget
| | |
| -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Group Daily Budget
| Daily budget amount for the ad group.
**Field Name:** `line_item.daily_budget_amount_local_micro`
**Type:** dimension |
| Ad Group Total Budget
| Total budget amount for the ad group.
**Field Name:** `line_item.total_budget_amount_local_micro`
**Type:** dimension |
### Promoted Tweet
| | |
| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| Promoted Tweet ID
| Unique identifier for the promoted tweet.
**Field Name:** `promoted_tweet.id`
**Type:** dimension |
| Tweet ID
| The underlying tweet ID being promoted.
**Field Name:** `promoted_tweet.tweet_id`
**Type:** dimension |
| Ad Group ID (Promoted Tweet)
| The ad group this promoted tweet belongs to.
**Field Name:** `promoted_tweet.line_item_id`
**Type:** dimension |
| Promoted Tweet Status
| Status of the promoted tweet (ACTIVE, PAUSED, etc.).
**Field Name:** `promoted_tweet.entity_status`
**Type:** dimension |
| Approval Status
| Approval status of the promoted tweet (ACCEPTED, REJECTED).
**Field Name:** `promoted_tweet.approval_status`
**Type:** dimension |
| Promoted Tweet Created At
| When the promoted tweet was created.
**Field Name:** `promoted_tweet.created_at`
**Type:** dimension |
| Promoted Tweet Updated At
| When the promoted tweet was last updated.
**Field Name:** `promoted_tweet.updated_at`
**Type:** dimension |
| Promoted Tweet Deleted
| Whether the promoted tweet is deleted.
**Field Name:** `promoted_tweet.deleted`
**Type:** dimension |
### Tweet Content
| | |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Ad Name
| Name given to the ad/tweet when created (max 80 characters). Useful for identifying ads.
**Field Name:** `tweet.name`
**Type:** dimension |
### Creative
| | |
| ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- |
| Promoted Tweet Card ID
| Unique identifier for the card creative.
**Field Name:** `card.id`
**Type:** dimension |
| Promoted Tweet Card Name
| Name of the card creative.
**Field Name:** `card.name`
**Type:** dimension |
| Promoted Tweet Card URI
| Internal URI reference for the card.
**Field Name:** `card.uri`
**Type:** dimension |
| Promoted Tweet Card Type
| Type of card (e.g., IMAGE\_WEBSITE, VIDEO\_WEBSITE, IMAGE\_APP).
**Field Name:** `card.type`
**Type:** dimension |
### Creative Media
| | |
| ------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Promoted Tweet Card Image URL
| URL of the image or video thumbnail in the card.
**Field Name:** `card.media_url`
**Type:** dimension |
| Promoted Tweet Card Media Type
| Type of media in the card (image or video).
**Field Name:** `card.media_type`
**Type:** dimension |
| Promoted Tweet Card Media Width
| Width of the card media in pixels.
**Field Name:** `card.media_width`
**Type:** dimension |
| Promoted Tweet Card Media Height
| Height of the card media in pixels.
**Field Name:** `card.media_height`
**Type:** dimension |
### Creative Video
| | |
| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Promoted Tweet Card Video Poster URL
| Poster/thumbnail image URL for video cards.
**Field Name:** `card.video_poster_url`
**Type:** dimension |
| Promoted Tweet Card Video Duration
| Duration of the video in milliseconds.
**Field Name:** `card.video_duration`
**Type:** dimension |
| Promoted Tweet Card Video Aspect Ratio
| Aspect ratio of the video (e.g., "16:9", "1:1").
**Field Name:** `card.video_aspect_ratio`
**Type:** dimension |
### Creative Carousel
| | |
| --------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Promoted Tweet Card Carousel Image 1 URL
| URL of the first carousel image.
**Field Name:** `card.carousel_image_1_url`
**Type:** dimension |
| Promoted Tweet Card Carousel Image 2 URL
| URL of the second carousel image.
**Field Name:** `card.carousel_image_2_url`
**Type:** dimension |
| Promoted Tweet Card Carousel Image 3 URL
| URL of the third carousel image.
**Field Name:** `card.carousel_image_3_url`
**Type:** dimension |
| Promoted Tweet Card Carousel Image 4 URL
| URL of the fourth carousel image.
**Field Name:** `card.carousel_image_4_url`
**Type:** dimension |
| Promoted Tweet Card Carousel Image 5 URL
| URL of the fifth carousel image.
**Field Name:** `card.carousel_image_5_url`
**Type:** dimension |
### Creative Destination
| | |
| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Promoted Tweet Card Destination Type
| Type of destination (WEBSITE or APP).
**Field Name:** `card.destination_type`
**Type:** dimension |
| Promoted Tweet Card Destination URL
| Full destination URL or app deep link.
**Field Name:** `card.destination_url`
**Type:** dimension |
| Promoted Tweet Card Display URL
| Shortened display URL (hostname only).
**Field Name:** `card.display_url`
**Type:** dimension |
### Creative App
| | |
| ----------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
| Promoted Tweet Card App Store ID
| App store identifier for app install cards.
**Field Name:** `card.app_store_id`
**Type:** dimension |
| Promoted Tweet Card App Country Code
| Country code for the app store.
**Field Name:** `card.app_country_code`
**Type:** dimension |
### Creative Details
| | |
| ------------------------------------------- | --------------------------------------------------------------------------------------------------------------- |
| Promoted Tweet Card Button Label
| Call-to-action button text on the card.
**Field Name:** `card.button_label`
**Type:** dimension |
| Promoted Tweet Card Title
| Title/headline of the card.
**Field Name:** `card.title`
**Type:** dimension |
| Promoted Tweet Card Created At
| When the card was created.
**Field Name:** `card.created_at`
**Type:** dimension |
| Promoted Tweet Card Updated At
| When the card was last updated.
**Field Name:** `card.updated_at`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your X Ads campaigns.
### Most Used
| | |
| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Spend
| Total spend in the campaign's currency.
**Field Name:** `billed_charge_local_micro`
**Type:** metric |
| Impressions
| Number of times the ad was shown to users (promoted impressions only).
**Field Name:** `impressions`
**Type:** metric |
| Clicks
| Clicks on the ad, including favorites and other engagements (promoted only).
**Field Name:** `clicks`
**Type:** metric |
| Url Clicks
| Clicks on the link or Website Card in the ad (promoted only, including earned).
**Field Name:** `url_clicks`
**Type:** metric |
| App Clicks
| App install or app open attempts from the ad (promoted only).
**Field Name:** `app_clicks`
**Type:** metric |
| Total Audience Reach
| Unique users reached by the ad campaign (promoted only). Requires a campaign-level dimension.
**Field Name:** `total_audience_reach`
**Type:** metric |
| Average Frequency
| Average times a user saw ads from the campaign (promoted only). Requires a campaign-level dimension.
**Field Name:** `average_frequency`
**Type:** metric |
### Engagement
| | |
| ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Likes
| Likes attributed to the ad campaign (promoted only).
**Field Name:** `likes`
**Type:** metric |
| Retweets
| Retweets attributed to the ad campaign (promoted only).
**Field Name:** `retweets`
**Type:** metric |
| Follows
| Follows attributed to the ad campaign (promoted only).
**Field Name:** `follows`
**Type:** metric |
| Unfollows
| Unfollows attributed to the ad campaign (promoted only).
**Field Name:** `unfollows`
**Type:** metric |
| Engagements
| Total engagements (likes, retweets, replies, clicks) attributed to the ad campaign (promoted only).
**Field Name:** `engagements`
**Type:** metric |
| Tweets send
| Tweets sent attributed to the ad campaign (promoted only).
**Field Name:** `tweets_send`
**Type:** metric |
| Replies
| Replies attributed to the ad campaign (promoted only).
**Field Name:** `replies`
**Type:** metric |
### Cards and Carousels
| | |
| --------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- |
| Card Engagements
| Card engagements attributed to the ad campaign (promoted only).
**Field Name:** `card_engagements`
**Type:** metric |
| Poll Card Vote
| Poll Card votes attributed to the ad campaign (promoted only).
**Field Name:** `poll_card_vote`
**Type:** metric |
| Carousel Swipes
| Swipes on Carousel images or videos attributed to the ad (promoted only).
**Field Name:** `carousel_swipes`
**Type:** metric |
### Video
| | |
| ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| Video Views
| Views where at least 3 seconds were played while 100% in view (promoted only).
**Field Name:** `video_total_views`
**Type:** metric |
| Video Content Starts
| Times video content started playing (promoted only).
**Field Name:** `video_content_starts`
**Type:** metric |
| Video Views (25%)
| Views where at least 25% of the video was viewed (promoted only).
**Field Name:** `video_views_25`
**Type:** metric |
| Video Views (50%)
| Views where at least 50% of the video was viewed (promoted only).
**Field Name:** `video_views_50`
**Type:** metric |
| Video Views (75%)
| Views where at least 75% of the video was viewed (promoted only).
**Field Name:** `video_views_75`
**Type:** metric |
| Video Views (100%)
| Views where 100% of the video was viewed (promoted only).
**Field Name:** `video_views_100`
**Type:** metric |
| Video CTA Clicks
| Clicks on the call-to-action button in a video ad (promoted only).
**Field Name:** `video_cta_clicks`
**Type:** metric |
| Video 6s Views
| Views where at least 6 seconds of the video was viewed (promoted only).
**Field Name:** `video_6s_views`
**Type:** metric |
| Video 15s Views
| Views where at least 15 seconds or 95% of the video was viewed (promoted only).
**Field Name:** `video_15s_views`
**Type:** metric |
### Media
| | |
| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Media Views
| Views on media content from the ad (promoted only).
**Field Name:** `media_views`
**Type:** metric |
| Media Engagements
| Engagements on media content from the ad (promoted only).
**Field Name:** `media_engagements`
**Type:** metric |
### Mobile Conversions
| | |
| --------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Mobile Conversion Purchases
| Total number of mobile app purchase conversions.
**Field Name:** `mobile_conversion_purchases`
**Type:** metric |
| Mobile Conversion Spent Credits
| Total number of mobile app spent credits conversions.
**Field Name:** `mobile_conversion_spent_credits`
**Type:** metric |
| Mobile Conversion Installs
| Total number of mobile app install conversions.
**Field Name:** `mobile_conversion_installs`
**Type:** metric |
| Mobile Conversion Content Views
| Total number of mobile app content view conversions.
**Field Name:** `mobile_conversion_content_views`
**Type:** metric |
| Mobile Conversion Add to Wishlists
| Total number of mobile app add to wishlist conversions.
**Field Name:** `mobile_conversion_add_to_wishlists`
**Type:** metric |
| Mobile Conversion Checkouts Initiated
| Total number of mobile app checkout initiated conversions.
**Field Name:** `mobile_conversion_checkouts_initiated`
**Type:** metric |
| Mobile Conversion Reservations
| Total number of mobile app reservation conversions.
**Field Name:** `mobile_conversion_reservations`
**Type:** metric |
| Mobile Conversion Tutorials Completed
| Total number of mobile app tutorial completed conversions.
**Field Name:** `mobile_conversion_tutorials_completed`
**Type:** metric |
| Mobile Conversion Achievements Unlocked
| Total number of mobile app achievement unlocked conversions.
**Field Name:** `mobile_conversion_achievements_unlocked`
**Type:** metric |
| Mobile Conversion Searches
| Total number of mobile app search conversions.
**Field Name:** `mobile_conversion_searches`
**Type:** metric |
| Mobile Conversion Add to Carts
| Total number of mobile app add to cart conversions.
**Field Name:** `mobile_conversion_add_to_carts`
**Type:** metric |
| Mobile Conversion Payment Info Additions
| Total number of mobile app payment info addition conversions.
**Field Name:** `mobile_conversion_payment_info_additions`
**Type:** metric |
| Mobile Conversion Re-engages
| Total number of mobile app re-engagement conversions.
**Field Name:** `mobile_conversion_re_engages`
**Type:** metric |
| Mobile Conversion Shares
| Total number of mobile app share conversions.
**Field Name:** `mobile_conversion_shares`
**Type:** metric |
| Mobile Conversion Rates
| Total number of mobile app rate conversions.
**Field Name:** `mobile_conversion_rates`
**Type:** metric |
| Mobile Conversion Logins
| Total number of mobile app login conversions.
**Field Name:** `mobile_conversion_logins`
**Type:** metric |
| Mobile Conversion Updates
| Total number of mobile app update conversions.
**Field Name:** `mobile_conversion_updates`
**Type:** metric |
| Mobile Conversion Levels Achieved
| Total number of mobile app level achieved conversions.
**Field Name:** `mobile_conversion_levels_achieved`
**Type:** metric |
| Mobile Conversion Invites
| Total number of mobile app invite conversions.
**Field Name:** `mobile_conversion_invites`
**Type:** metric |
| Mobile Conversion Key Page Views
| Total number of mobile app key page view conversions.
**Field Name:** `mobile_conversion_key_page_views`
**Type:** metric |
| Mobile Conversion Downloads
| Total number of mobile app download conversions.
**Field Name:** `mobile_conversion_downloads`
**Type:** metric |
| Mobile Conversion Sign Ups
| Total number of mobile app sign up conversions.
**Field Name:** `mobile_conversion_sign_ups`
**Type:** metric |
| Mobile Conversion Site Visits
| Total number of mobile app site visit conversions.
**Field Name:** `mobile_conversion_site_visits`
**Type:** metric |
### Web Conversions
| | |
| ------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Web Conversion Purchases
| Total number of web purchase conversions.
**Field Name:** `conversion_purchases`
**Type:** metric |
| Web Conversion Sign Ups
| Total number of web sign up conversions.
**Field Name:** `conversion_sign_ups`
**Type:** metric |
| Web Conversion Site Visits
| Total number of web site visit conversions.
**Field Name:** `conversion_site_visits`
**Type:** metric |
| Web Conversion Downloads
| Total number of web download conversions.
**Field Name:** `conversion_downloads`
**Type:** metric |
| Web Conversion Custom
| Total number of web custom conversions.
**Field Name:** `conversion_custom`
**Type:** metric |
***
## Related
Browse all platforms
Meta Ads metrics & dimensions
Google Ads metrics & dimensions
TikTok Ads metrics & dimensions
# YouTube Analytics Metrics & Dimensions
Source: https://support.detrics.io/data-source/youtube-analytics/fields
Complete reference for YouTube Analytics dimensions and metrics
**Last updated:** August 6, 2026
This reference covers all available dimensions and metrics for YouTube Analytics data through Detrics. Use this guide to understand what data you can extract and how to structure your queries.
Supported destinations:
Google Sheets
Claude
BigQuery
## Dimensions
Dimensions are the attributes you can use to segment and group your YouTube Analytics data.
### Channel
| | |
| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
| Channel ID
| The unique ID of the YouTube channel
**Field Name:** `channelId`
**Type:** dimension |
| Channel Name
| The name of the YouTube channel
**Field Name:** `channelTitle`
**Type:** dimension |
| Channel URL
| The URL of the YouTube channel
**Field Name:** `channelUrl`
**Type:** dimension |
| Channel Description
| The description of the YouTube channel
**Field Name:** `channelDescription`
**Type:** dimension |
| Channel Custom URL
| The custom URL of the YouTube channel
**Field Name:** `channelCustomUrl`
**Type:** dimension |
| Channel Created Date
| The date the channel was created
**Field Name:** `channelPublishedAt`
**Type:** dimension |
| Channel Thumbnail URL
| The URL of the channel thumbnail
**Field Name:** `channelThumbnailUrl`
**Type:** dimension |
| Channel Country
| The country associated with the channel
**Field Name:** `channelCountry`
**Type:** dimension |
| Channel Hidden Subscribers
| Whether the subscriber count is publicly visible
**Field Name:** `channelHiddenSubscribers`
**Type:** dimension |
### Video
| | |
| -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| Video ID
| The unique ID of the video
**Field Name:** `videoId`
**Type:** dimension |
| Video Title
| The title of the video
**Field Name:** `videoTitle`
**Type:** dimension |
| Video URL
| The URL of the video
**Field Name:** `videoUrl`
**Type:** dimension |
| Video Thumbnail URL
| The URL of the video thumbnail
**Field Name:** `videoThumbnailUrl`
**Type:** dimension |
| Video Visibility Status
| The visibility status of the video (public, private, unlisted)
**Field Name:** `videoPrivacyStatus`
**Type:** dimension |
| Video Upload Status
| The upload status of the video
**Field Name:** `videoUploadStatus`
**Type:** dimension |
| Video Failure Reason
| The reason a video failed to upload
**Field Name:** `videoFailureReason`
**Type:** dimension |
| Video Rejection Reason
| The reason a video was rejected
**Field Name:** `videoRejectionReason`
**Type:** dimension |
| Video Length
| The duration of the video
**Field Name:** `videoLength`
**Type:** dimension |
| Video Embeddability
| Whether the video can be embedded on other sites
**Field Name:** `videoEmbeddable`
**Type:** dimension |
| Video Public Stats Viewable
| Whether extended video statistics are publicly viewable
**Field Name:** `videoPublicStatsViewable`
**Type:** dimension |
| Video Made For Kids
| Whether the video is designated as child-directed
**Field Name:** `videoMadeForKids`
**Type:** dimension |
| Published Date
| The date the video was published
**Field Name:** `videoPublishedDate`
**Type:** dimension |
| Video Description
| The description of the video
**Field Name:** `videoDescription`
**Type:** dimension |
| Video Tags
| Keyword tags associated with the video
**Field Name:** `videoTags`
**Type:** dimension |
| Live Broadcast Content
| Whether the video has live broadcast content (upcoming, live, none)
**Field Name:** `liveBroadcastContent`
**Type:** dimension |
### Breakdown
| | |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- |
| Creator Content Type
| The type of content: shorts, videoOnDemand, or liveStream
**Field Name:** `creatorContentType`
**Type:** dimension |
| Live Or On-Demand
| Whether views are from live broadcast or on-demand playback
**Field Name:** `liveOrOnDemand`
**Type:** dimension |
### Demographics
| | |
| -------------------- | ------------------------------------------------------------------------------------------------- |
| Age Group
| The age group of logged-in viewers
**Field Name:** `ageGroup`
**Type:** dimension |
| Gender
| The gender of logged-in viewers
**Field Name:** `gender`
**Type:** dimension |
### Device
| | |
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| Device Type
| The device type (mobile, desktop, tablet, TV)
**Field Name:** `deviceType`
**Type:** dimension |
| Operating System
| The operating system of the viewer device
**Field Name:** `operatingSystem`
**Type:** dimension |
| YouTube Product
| The YouTube service where activity occurred (Core, Music, etc.)
**Field Name:** `youtubeProduct`
**Type:** dimension |
### Traffic
| | |
| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| Traffic Source Type
| How viewers reached the video (search, suggested, external, etc.)
**Field Name:** `insightTrafficSourceType`
**Type:** dimension |
### Geography
| | |
| ------------------- | ----------------------------------------------------------------------------------------------------------------- |
| Country
| The country associated with the report metrics
**Field Name:** `country`
**Type:** dimension |
| US State
| The US state (only available when filtering by US)
**Field Name:** `province`
**Type:** dimension |
### Monetization
| | |
| ------------------ | ---------------------------------------------------------------------------------------------------------- |
| Ad Type
| The type of ad that ran during video playback
**Field Name:** `adType`
**Type:** dimension |
### Audience Retention
| | |
| ----------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| Elapsed Video Time Ratio
| The ratio of elapsed video time to total video length
**Field Name:** `elapsedVideoTimeRatio`
**Type:** dimension |
## Metrics
Metrics are the numerical values you can measure and analyze from your YouTube Analytics campaigns.
### Engagement
| | |
| ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| Video Views
| The number of times videos were viewed
**Field Name:** `views`
**Type:** metric |
| Engaged Views
| Views of at least 4 seconds
**Field Name:** `engagedViews`
**Type:** metric |
| Estimated Minutes Watched
| Total minutes users watched videos
**Field Name:** `estimatedMinutesWatched`
**Type:** metric |
| Average View Duration (Sec)
| Average video playback length in seconds
**Field Name:** `averageViewDurationSeconds`
**Type:** metric |
| Average View Duration (Min)
| Average video playback length in minutes
**Field Name:** `averageViewDurationMinutes`
**Type:** metric |
| Average View Duration Percentage
| Average percentage of video watched
**Field Name:** `averageViewPercentage`
**Type:** metric |
| Likes
| Number of likes on videos
**Field Name:** `likes`
**Type:** metric |
| Dislikes
| Number of dislikes on videos
**Field Name:** `dislikes`
**Type:** metric |
| Comments
| Number of comments on videos
**Field Name:** `comments`
**Type:** metric |
| Shares
| Number of times videos were shared
**Field Name:** `shares`
**Type:** metric |
| Gained Subscribers
| Number of new subscribers gained
**Field Name:** `subscribersGained`
**Type:** metric |
| Lost Subscribers
| Number of subscribers lost
**Field Name:** `subscribersLost`
**Type:** metric |
| Videos Added To Playlist
| Times videos were added to playlists
**Field Name:** `videosAddedToPlaylists`
**Type:** metric |
| Videos Removed From Playlist
| Times videos were removed from playlists
**Field Name:** `videosRemovedFromPlaylists`
**Type:** metric |
| Viewer Percentage
| Percentage of logged-in viewers (only with demographics)
**Field Name:** `viewerPercentage`
**Type:** metric |
### Channel Totals
| | |
| ------------------------------------ | --------------------------------------------------------------------------------------------------------------- |
| Channel Total Page Views
| Total channel views (all time)
**Field Name:** `channelTotalViews`
**Type:** metric |
| Channel Total Subscribers
| Total channel subscribers (all time)
**Field Name:** `channelTotalSubscribers`
**Type:** metric |
| Channel Total Video Count
| Total public videos on the channel
**Field Name:** `channelTotalVideos`
**Type:** metric |
### Cards
| | |
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
| Card Impressions
| Number of times cards were displayed
**Field Name:** `cardImpressions`
**Type:** metric |
| Card Clicks
| Number of times cards were clicked
**Field Name:** `cardClicks`
**Type:** metric |
| Card Click Rate
| Click-through rate for cards
**Field Name:** `cardClickRate`
**Type:** metric |
| Card Teaser Impressions
| Number of times card teasers were shown
**Field Name:** `cardTeaserImpressions`
**Type:** metric |
| Card Teaser Clicks
| Number of clicks on card teasers
**Field Name:** `cardTeaserClicks`
**Type:** metric |
| Card Teaser Click Rate
| Click-through rate for card teasers
**Field Name:** `cardTeaserClickRate`
**Type:** metric |
### Annotations
| | |
| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
| Annotation Impressions
| Total annotation impressions
**Field Name:** `annotationImpressions`
**Type:** metric |
| Annotation Clickable Impressions
| Clickable annotation impressions
**Field Name:** `annotationClickableImpressions`
**Type:** metric |
| Annotation Closable Impressions
| Closable annotation impressions
**Field Name:** `annotationClosableImpressions`
**Type:** metric |
| Annotation Clicks
| Number of annotation clicks
**Field Name:** `annotationClicks`
**Type:** metric |
| Annotation Closes
| Number of annotation closes
**Field Name:** `annotationCloses`
**Type:** metric |
| Annotation Click Through Rate
| Annotation click-through rate
**Field Name:** `annotationClickThroughRate`
**Type:** metric |
| Annotation Close Rate
| Annotation close rate
**Field Name:** `annotationCloseRate`
**Type:** metric |
### Monetization
| | |
| ---------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| Estimated Revenue
| Estimated net revenue from advertising and non-advertising sources
**Field Name:** `estimatedRevenue`
**Type:** metric |
| Gross Revenue (USD)
| Estimated gross revenue from Google-sold advertising
**Field Name:** `grossRevenue`
**Type:** metric |
| Ad Impressions
| Number of verified ad impressions served
**Field Name:** `adImpressions`
**Type:** metric |
| CPM
| Estimated gross revenue per thousand ad impressions
**Field Name:** `cpm`
**Type:** metric |
| Monetized Playbacks
| Playbacks where at least one ad impression was shown
**Field Name:** `monetizedPlaybacks`
**Type:** metric |
| Playback Based CPM
| Estimated gross revenue per thousand playbacks
**Field Name:** `playbackBasedCpm`
**Type:** metric |
| Estimated YouTube Premium Minutes Watched
| Minutes watched by YouTube Premium members
**Field Name:** `estimatedRedMinutesWatched`
**Type:** metric |
| YouTube Premium Views
| Views by YouTube Premium members
**Field Name:** `redViews`
**Type:** metric |
### Audience Retention
| | |
| ----------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- |
| Audience Watch Ratio
| Absolute ratio of viewers watching at given point
**Field Name:** `audienceWatchRatio`
**Type:** metric |
| Relative Retention Performance
| Retention compared to similar length videos
**Field Name:** `relativeRetentionPerformance`
**Type:** metric |
***
## Related
Browse all platforms
Google Analytics 4 metrics & dimensions
Google Ads metrics & dimensions
TikTok Organic metrics & dimensions
# Fields Catalog
Source: https://support.detrics.io/fields-catalog/index
Browse all available metrics and dimensions for each platform
**Last updated:** August 7, 2026
Every data source in Detrics exposes a set of **fields** you can use in your queries. Fields come in two types:
* **Metrics** are the numbers you measure, impressions, clicks, spend, revenue, conversions, and so on.
* **Dimensions** are the categories you group by, campaign name, date, country, device, ad creative, and so on.
Use this catalog to find the exact fields available for each platform. Every field page lists the field name, type, and a short description so you know what to expect in your data.
These same fields are available across all Detrics destinations: Google Sheets, Looker Studio, BigQuery Data Warehouse, and the MCP integration for AI tools.
***
## Advertising
Campaigns, ad sets, ads, and creative performance
Search, display, video, shopping, and Performance Max campaigns
In-feed ads, spark ads, and auction campaigns
Sponsored content, message ads, and lead gen forms
Microsoft Advertising search and audience campaigns
Promoted tweets, followers, and video campaigns
Promoted pins, shopping ads, and awareness campaigns
Display & Video 360 programmatic campaigns
Product ads and display campaigns on MercadoLibre
Campaigns, ad sets, creatives, and conversion metrics
Campaigns, keywords, installs, and conversion metrics from the App Store
Retargeting and display performance, video engagement, and ad set settings
***
## Social & Organic
Followers, reach, impressions, and post-level engagement
Page-level reach, engagement, and audience demographics
Publicly available page and post data
Video views, likes, shares, comments, and profile analytics
Channel performance, video views, watch time, and monetization
***
## Analytics
Sessions, users, events, conversions, and traffic sources
Search queries, impressions, clicks, CTR, and position
Local search keywords, profile views, calls, direction requests, and reviews
Bing search queries, pages, clicks, position, and SEO crawl health
Mobile installs, in-app events, attribution, and cost per acquisition
Page views, visits, visitors, revenue, and marketing channel breakdowns
***
## E-commerce
Orders, products, customers, inventory, and sales
Orders, products, customers, and coupons
Orders, products, and customers for LATAM e-commerce
Charges, subscriptions, customers, invoices, and payouts
Orders, products, SKUs, inventory, and shipping
Orders, revenue, products, and customer data
Seller reputation, sales, items, and marketplace performance
***
## CRM & Email Marketing
Email campaigns, flows, lists, and subscriber metrics
Contacts, deals, companies, and marketing emails
Accounts, opportunities, leads, cases, and campaigns
Campaigns, audiences, open rates, and click performance
Email campaigns, automations, subscribers, and engagement metrics
Cold email campaigns, leads, replies, and sender account health
Product listings, approval status, clicks, and impressions
***
## Next steps
Use these fields to build your first report
Manage your team and data source connections
**Can't find a field?** If the metric or dimension you need isn't listed, reach out at [support@detrics.io](mailto:support@detrics.io), we regularly add new fields based on user requests.
# Choose Your Path
Source: https://support.detrics.io/getting-started/choose-your-path
Pick the right Detrics integration for your workflow
Every team works differently. Choose the integration that fits how you already work, and you will be up and running in minutes.
Pull marketing data directly into your spreadsheets. Best for analysts who build custom reports, need flexible data manipulation, or share results with non-technical stakeholders.
Power your Looker Studio dashboards with live marketing data. Best for teams that need auto-refreshing visual dashboards and client-facing reports.
Query your marketing data using natural language through Claude. Best for quick ad-hoc analysis and teams already using AI tools.
Sync marketing data into BigQuery on a schedule. Best for data engineers and teams that need raw data for custom SQL analysis, dbt models, or BI tools.
Not sure which to pick? Most teams start with **Google Sheets** for quick reporting, then add a **Data Warehouse** as they scale. You can use multiple integrations at the same time.
# How Detrics Saves You Time
Source: https://support.detrics.io/getting-started/how-we-save-you-time
Whether you're an agency, a developer, or a founder, Detrics gets you out of the plumbing and into the work that matters.
Detrics moves marketing data from 30+ platforms into the tools you already use: Google Sheets, Looker Studio, Claude, and BigQuery. Here's what that means for you, depending on what you do.
## If you're a marketing agency
You manage clients across Meta, Google Ads, TikTok, GA4, and a long tail of other platforms. Every Monday someone is logging into each one, exporting CSVs, and pasting numbers into a spreadsheet. Detrics replaces all of that with a connection you set up once and a query that refreshes on its own, so your team stops being a data-entry team and goes back to running campaigns. [Start with the Google Sheets add-on](/google-sheets/quickstart).
## If you're a developer
You don't have to write a single API integration. Use our [Claude MCP](/claude/overview) to pull live marketing data into your AI workflows with natural language. We take care of authentication, token refreshment, rate limiting, data normalization and cleaning, and API updates and maintenance. If you need raw data in a warehouse for SQL, dbt, or custom pipelines, point Detrics at [BigQuery](/bigquery/quickstart) and we'll keep it synced for you.
## If you're a founder
Don't vibe-code an integration you'll have to maintain forever. OAuth flows break, marketing APIs change every few months, and the weekends you spend debugging a token refresh are weekends you're not shipping product. Our cheapest paid plan is [\$24.99/month](/pricing), which is roughly one hour of your time, and it gives you the [Claude MCP](/claude/overview) plus the Google Sheets connector. Buy your way out of the plumbing.
**Get Started Free.** Connect your first platform in under 2 minutes, then add billing when you're ready.
# Google Sheets Quickstart
Source: https://support.detrics.io/google-sheets/quickstart
Launch Detrics and run your first query in under 2 minutes
Follow these 8 steps to go from a blank spreadsheet to live marketing data using a preset template.
**Prerequisites:** You need a [Detrics account](https://detrics.io/get-started?utm_source=detrics-support\&utm_medium=sheets-quickstart) and the Detrics add-on installed. If you haven't done this yet, follow the [installation guide](/quickstart/google-sheets) first.
Go to [sheets.new](https://sheets.new) to create a new blank spreadsheet, or open any existing sheet where you want to pull data.
Click **Extensions** in the top menu bar.
Hover over **Detrics - PPC, Marketing Analytics & Ecommerce**, then click **Launch Detrics** from the submenu.
Don't see Detrics in the list? You need to [install the add-on](/quickstart/google-sheets) first from Google Workspace Marketplace.
After a few seconds, the sidebar finishes loading and shows the **Start from Preset** screen with all available data sources. Click the platform you want to pull data from (e.g., **Google Analytics 4**).
Each template includes a name and short description. Click the one that matches the data you need.
Choose which account to pull data from. Use the search box to filter by name, then check the box next to your account.
Click the **Execute Template** button to run the query. You can also click **Customize Template** to adjust metrics, dimensions, or date range before running.
Detrics fetches the data from the platform API and writes it directly into your spreadsheet. The sidebar shows a success message and an option to enable automatic daily refresh.
Enable **Refresh daily at 9 AM** to keep your data updated every morning automatically.
## What's next?
Build queries from scratch with your own metrics, dimensions, and filters.
Set up scheduled refreshes to keep your data always up to date.
Customize preset templates or create your own reusable queries.
Copy queries between spreadsheets in a few clicks.
# What is Detrics?
Source: https://support.detrics.io/index
Detrics connects your marketing platforms to Google Sheets, Looker Studio, Claude, and BigQuery, so your data is always where you need it.
Detrics is a marketing data connector. It pulls metrics and dimensions from 30+ platforms (Meta Ads, Google Ads, Shopify, GA4, and more) into the tools you already use: Google Sheets, Looker Studio, Claude, and BigQuery.
You connect a platform once, and Detrics keeps your data fresh and ready to use on a schedule you define.
## How It Works
1. **Connect** your marketing platforms through OAuth (read-only, secure)
2. **Query** the metrics and dimensions you need, from the tool you prefer
3. **Automate** with scheduled refreshes so your reports stay current
## Choose Where to Start
Pull data directly into spreadsheets. Build custom reports, share with your team, schedule automatic updates.
Power your Looker dashboards with live marketing data. Auto-refreshing, client-ready visualizations.
Query marketing data with natural language in Claude via MCP.
Sync marketing data to BigQuery on a schedule. SQL access, dbt-ready, built for data teams.
## What Makes Detrics Different
* **30+ platforms** in one tool, advertising, analytics, e-commerce, CRM
* **Multiple destinations**: Sheets, Looker, AI, and BigQuery from a single connection
* **Team workspaces**: share connections and queries across your organization
* **Affordable**: built for agencies and growing teams, not enterprise budgets
## Supported Platforms
Detrics connects to 30+ advertising, analytics, e-commerce, and CRM platforms. The [Fields Catalog](/fields-catalog/index) is the always-current source of truth for every supported platform, with the metrics and dimensions available for each.
See every supported platform and all of its available fields.
**Get Started Free**: No credit card required. Connect your first platform in under 2 minutes.
# Add the Detrics Connector
Source: https://support.detrics.io/looker-studio/add-connector
Step-by-step guide to adding Detrics as a data source in Looker Studio
**Last updated:** March 21, 2026
This guide walks through every step of adding a Detrics connector to Looker Studio, from finding the connector to seeing your data in a live report.
## Two ways to add the connector
You can add Detrics to Looker Studio in two ways:
1. **From the Detrics website** (recommended for first-time users)
2. **From within Looker Studio** (if you already have a report open)
***
## Option 1: From the Detrics website
Go to [detrics.io/looker-studio/integrations](https://www.detrics.io/looker-studio/integrations?utm_source=detrics-support\&utm_medium=looker-add-connector) and browse the available connectors.
You will see connectors for Meta Ads, Google Ads, TikTok Ads, LinkedIn Ads, Google Analytics 4, Shopify, and more.
Click on the platform you want to connect. For example, click **Meta Ads** to add Facebook/Instagram advertising data.
This will redirect you to Looker Studio's connector authorization page.
You will see two authorization steps:
1. Click the **Authorize** button on the left side to sign in with your Google account
2. Click the **Authorize** button on the right side to connect your ad platform
Choose the specific account you want to pull data from. For Meta Ads, you will see a dropdown listing all your ad accounts.
Some connectors offer pre-built templates with common charts and layouts already configured. Keep the checkbox checked to start with a template, or uncheck it to start from a blank report.
Templates are a great starting point. You can always customize or remove any element after the report is created.
Click the **Connect** button in the top-right corner of the screen to finalize the connection.
Before creating the report, you can review the available fields. A common adjustment is changing the "Ad Image" field type from **Text** to **Image URL** so your report can display ad creative previews.
Click **Create Report** (or **Add to Report** if adding to an existing report). Your data source is now connected and ready to use.
***
## Option 2: From within Looker Studio
If you already have a report open in edit mode, you can add Detrics as an additional data source.
In edit mode, click **Add data** in the toolbar at the top of the screen, or click the **Add Data** link at the bottom of the Data panel on the right side.
In the connector search dialog, type **Detrics**. You will see all available Detrics connectors listed. Select the one matching your platform.
Follow the same authorization flow as Option 1 above (Steps 3-4). You will authorize your Google account, then your platform account, and select the specific ad account.
Once connected, you will see the data source appear in the Data panel on the right, showing the platform name (e.g., "Meta Ads") and all available field categories.
***
## What you see after connecting
Once your connector is set up and you have added charts, your report will display live data from your ad platform. Here is an example report with two data tables pulling campaign performance data from Meta Ads:
## Switching accounts on an existing connector
If you need to change which ad account a connector uses:
1. Go to **Resource > Manage added data sources**
2. Find the Detrics connector and click **Edit**
3. Change the account selection
4. Click **Reconnect** in the top-right corner
## Available connectors
Detrics currently supports the following platforms as Looker Studio connectors:
* **Meta (Facebook) Ads**
* **Google Ads**
* **TikTok Ads**
* **LinkedIn Ads**
* **X (Twitter) Ads**
* **Bing (Microsoft) Ads**
* **Google Display & Video 360**
* **Google Analytics 4**
* **Instagram Insights**
* **Shopify**
For the full list with field details, see [Supported Data Sources](/data-destination/looker-studio/supported-data-sources).
## Troubleshooting connection issues
Make sure you are searching for **Detrics** (not "Dataplug"). If it still does not appear, try using the [direct link from the Detrics website](https://www.detrics.io/looker-studio/integrations?utm_source=detrics-support\&utm_medium=looker-add-connector-troubleshooting) instead.
Clear your browser cookies for `lookerstudio.google.com` and try again. Make sure you are using the same Google account that has your Detrics workspace. If the issue persists, try in an incognito window.
Verify that your platform connection is active in your [Detrics workspace](https://app.detrics.io). If the connection has expired, re-authorize it in the Detrics web app first, then retry in Looker Studio.
Check the [6-minute timeout guide](/data-destination/looker-studio/6-minutes-limit). Looker Studio has a strict execution time limit. Try reducing your date range or the number of fields in your query.
Each Looker Studio connector instance is tied to a single ad account. To pull data from multiple accounts, add the connector once per account using **Add data**.
## Next steps
Full walkthrough of building your first report
Tips to speed up your dashboard workflow
Understand Looker Studio's query timeout and how to work around it
Solutions for common issues
**Need help?** Reach out to [support@detrics.io](mailto:support@detrics.io) for assistance with connection issues or missing platforms.
# Looker Studio Quickstart
Source: https://support.detrics.io/looker-studio/quickstart
Connect Detrics to Looker Studio and create your first report
**Last updated:** March 21, 2026
This visual walkthrough shows you how to connect Detrics to Looker Studio and build your first dashboard, step by step. By the end, you will have a working report pulling live marketing data.
## Prerequisites
Before you begin, make sure you have:
* A [Detrics account](https://detrics.io/get-started?utm_source=detrics-support\&utm_medium=looker-quickstart) with at least one connected platform
* Access to [Looker Studio](https://lookerstudio.google.com) (free with any Google account)
## Connect and build your first report
Go to [lookerstudio.google.com](https://lookerstudio.google.com) and click **Blank Report** to start a new report, or open an existing one.
You will land in Edit mode with the toolbar across the top.
Click **Add data** in the toolbar. In the connector search dialog, type **Detrics** and select the connector for your platform (e.g., "Detrics Meta Ads Connector").
Authorize the connection when prompted, then select the ad account you want to pull data from.
First time connecting? See the detailed [Add the Detrics Connector](/looker-studio/add-connector) guide for the full authorization flow with screenshots.
Once connected, the **Data panel** on the right shows all available fields organized into categories. For Meta Ads, you will see groups like Account, Ad, Ad Set, Ad Creative, Videos, Clicks, Total Metrics, and many more.
Expand any category to see individual fields. In Looker Studio, **dimensions** are attributes you group by (like Campaign Name or Date) and **metrics** are numeric values you measure (like Cost or Impressions).
Click **Add a chart** in the toolbar and choose a chart type (Table, Time series, Bar chart, Scorecard, etc.). The chart will appear on the canvas.
You can also drag a field directly from the Data panel onto the canvas to auto-create a chart.
After adding a table chart, click it to select it. In the properties panel, drag fields from the Data panel into the **Dimension** and **Metric** slots (or use the "Add dimension" / "Add metric" buttons). Your table will populate with live data.
Here you can see campaign names, dates, and cost data pulled directly from Meta Ads.
Click any chart to open its **Table properties** panel. Here you can:
* Change the **Data source** (e.g., Meta Ads)
* Add or remove **Dimensions** (like Campaign Name, Date, Result Name)
* Add or remove **Metrics** (like Cost, Results, Cost per Result)
* Set **Filters** and **Default date range**
Click **Add a control** in the toolbar and select **Date range control**. Place it on your report canvas. This lets viewers filter all charts by a custom date range.
Once placed, you will see a date range dropdown on your report canvas where users can select their desired date range.
Click the **View** button (blue button in the top-right corner) to exit edit mode and see your finished report as viewers will see it. Your dashboard is now pulling live data from Detrics.
Your 14-day free trial starts once your first table loads data in Looker Studio.
Looker Studio has a **6-minute execution limit** per data source query. If your report times out, reduce the date range or number of fields. See the [6-minute limit guide](/data-destination/looker-studio/6-minutes-limit) for details.
## Next steps
Detailed walkthrough of the connector authorization and account selection flow
Performance tips to speed up your dashboard creation workflow
See which platforms are available as Looker Studio connectors
Solutions for common connection and performance issues
**Need help?** Reach out to [support@detrics.io](mailto:support@detrics.io) for assistance with connectors or available metrics.
# Pricing & Plans
Source: https://support.detrics.io/pricing
Choose the plan that fits your business needs
**Last updated:** May 18, 2026
# Pricing & Plans
Detrics offers flexible pricing plans designed to scale with your business. Choose between our Google Sheets Addon, Looker Studio Connectors, and the BigQuery Data Warehouse based on your needs.
## Google Sheets Addon Plans
| Feature | Free | Starter | Growth | Pro (Most Popular) | Business |
| ----------------------- | ----------- | ------------- | ------------- | ----------------------- | ----------------------- |
| **Price** | \$0/month | \$24.99/month | \$49.99/month | \$99.99/month | \$149.99/month |
| **Data updates/month** | 35 | 250 | 1,250 | 5,000 | Unlimited |
| **Rows per update** | 1,000 | Unlimited | Unlimited | Unlimited | Unlimited |
| **Accounts per source** | Unlimited | Unlimited | Unlimited | Unlimited | Unlimited |
| **Users** | Single user | Single user | Single user | Shared subscription | Shared subscription |
| **Refreshes** | Hourly | Hourly | Hourly | Hourly | Hourly |
| **Support** | Live Chat | Live Chat | Live Chat | Dedicated Slack channel | Dedicated Slack channel |
| **Migration** | - | - | - | Supermetrics migration | Supermetrics migration |
| **Additional users** | - | - | - | \$19.99 per month | \$19.99 per month |
### Annual Pricing
| Plan | Monthly | Annual Rate | Annual Total | Savings % | You Save |
| -------- | -------------- | -------------- | ------------ | --------- | -------- |
| Starter | \$24.99/month | \$19.99/month | \$239/year | 20% | \$60 |
| Growth | \$49.99/month | \$39.99/month | \$479/year | 20% | \$120 |
| Pro | \$99.99/month | \$79.99/month | \$959/year | 20% | \$240 |
| Business | \$149.99/month | \$114.99/month | \$1,379/year | 23% | \$420 |
**Save up to 23% annually!** All paid plans include a significant discount
when billed yearly.
### Premium Features
#### Pro & Business Plan Benefits
Don't worry about data update limits with unlimited updates. Scale without extra costs as your business grows.
Shared subscriptions with Pro and Business plans. Add additional users and
manage multi-account teams efficiently with centralized data access.
Pro and Business plans include free Supermetrics migration assistance to help
you transition seamlessly.
Get direct access to our team through a dedicated Slack channel for immediate assistance.
### Understanding Data Updates
A data update is counted each time you:
* Execute a data pull from any connected platform
* Refresh existing data in your spreadsheet
* Run scheduled automatic updates
Multiple accounts or date ranges in a single execution still count as one data update.
## Looker Studio Connectors
| Feature | Lite | Unlimited |
| ------------------ | -------------- | -------------- |
| **Monthly Price** | \$14.99/month | \$19.99/month |
| **Free Trial** | 14 days | 14 days |
| **Connectors** | 1 connector | 10+ connectors |
| **Reports** | Unlimited | Unlimited |
| **Accounts** | 1 account | Unlimited |
| **Setup Time** | 2 minutes | 2 minutes |
| **Data Security** | 256-bit SSL | 256-bit SSL |
| **Authentication** | OAuth 2.0 | OAuth 2.0 |
| **Compliance** | GDPR compliant | GDPR compliant |
### Annual Pricing
| Plan | Monthly | Annual Rate | Annual Total | Savings % | You Save |
| --------- | ------------- | ------------- | ------------ | --------- | -------- |
| Lite | \$14.99/month | \$10.99/month | \$131/year | 25% | \$48 |
| Unlimited | \$19.99/month | \$14.99/month | \$179/year | 25% | \$60 |
**Save 25% annually!** Both Looker Studio plans include a significant discount
when billed yearly. No credit card required to start your free 14-day trial.
## BigQuery / Data Warehouse Plans
The **Data Warehouse** syncs marketing data from every Detrics-supported platform directly into your own Google BigQuery project. Pricing is **quote-based**, scaled to the number of connectors and ad accounts you need, book a demo for a personalized quote.
| | Data Warehouse |
| ------------------ | --------------------------------------------------------------------------------------------------- |
| **Pricing model** | Custom quote, based on connectors & accounts |
| **Billing** | Monthly or annual, no forced annual contract |
| **Connectors** | Core connectors included; premium connectors as add-ons |
| **BigQuery usage** | No data-volume fees from Detrics, you pay Google directly for your own BigQuery storage and compute |
| **Support** | Dedicated support & custom SLA |
### What's included
Sync any Detrics-supported platform. Flexible bundling, you only pay for the connectors and accounts you actually use.
Incremental, Full Refresh, and Full Append, with per-table configuration and scheduling.
Data lands in your own GCP project. No data-volume fees from Detrics, you only pay Google for your BigQuery usage.
Query your warehouse with Claude, plus dedicated support and a custom SLA.
BigQuery pricing isn't a fixed tier, it's tailored to your setup. [Book a demo](https://detrics.io/demo/book) for a personalized quote.
## Support Levels
| Plan | Support Type | Response Time | Features |
| ------------ | ----------------------- | ------------- | ------------------------------------- |
| **Free** | Live Chat | Standard | Basic support |
| **Starter** | Live Chat | Standard | Standard support |
| **Growth** | Live Chat | Standard | Standard support |
| **Pro** | Dedicated Slack Channel | Immediate | Direct team access, migration support |
| **Business** | Dedicated Slack Channel | Immediate | Direct team access, migration support |
## Choosing the Right Destination
When selecting between Google Sheets and Looker Studio, consider your data volume and refresh needs:
- Timeframes longer than 7 days for Ads platforms
- 30+ days of data with multiple accounts
- Heavy data platforms: TikTok Ads, Meta Ads, Tiendanube, Shopify
- Need for custom calculations and data manipulation
- Requirement for data caching and improved performance
- Real-time or near real-time dashboards
- Executive presentations and client reporting
- Interactive visualizations and filters
- Smaller data volumes or shorter timeframes
**Performance Tip**: For optimal performance with data-heavy platforms (TikTok
Ads, Meta Ads, Tiendanube, Shopify), consider using Google Sheets as an
intermediate layer. This provides:
- Integrated cache between you and platforms
- Uniform experience across different platform latencies
- Improved dashboard creation performance
- Easy visualization creation with cached data
## Billing Information
### Payment Methods
- Credit/Debit cards (Visa, Mastercard, American Express, Diners)
- Google Pay
- Bank transfers and ACH (Business+ only)
- Annual invoicing available
### Billing Cycles
- Monthly billing with no long-term commitments
- Annual billing with 25% discount
- Custom enterprise agreements available
- Free 14-day trial for Looker Studio (no credit card required)
### How to change tax information
Follow these three simple steps to update your tax information:
Navigate to [app.detrics.io/account](https://app.detrics.io/account) and
click the "Manage subscription" button next to your current plan.
In the Stripe billing portal, click "Update information" under the Billing
Information section to modify your name, email, or billing address.
Scroll down to the Tax ID section, select your ID type from the dropdown,
enter your tax identification number, and click "Save" to apply the changes.
## Upgrading Your Plan
Ready to unlock more features? You can upgrade your plan at any time:
1. Visit [detrics.io/pricing](https://detrics.io/pricing?utm_source=detrics-support\&utm_medium=upgrading-your-plan)
2. Select your plan
3. Changes take effect immediately
## Questions?
Have questions about pricing or need a custom plan? Contact our support team:
- Email: [support@detrics.io](mailto:support@detrics.io)
- Live Chat available in Argentina GMT-3 timezone from 9 AM to 6 PM
# Workspace Overview
Source: https://support.detrics.io/workspace/quickstart
Manage your team, connections, and account settings
**Last updated:** March 21, 2026
Your workspace is where your entire team collaborates on data. It holds your team members, data source connections, scheduled queries, and account settings, all in one place.
***
## How the workspace is organized
A Detrics workspace contains:
* **Team Members**: the people who can log in and use Detrics
* **Connections**: authenticated links to your ad platforms, analytics tools, and e-commerce stores
* **Account settings**: your plan, billing, and workspace preferences
Every team member shares the same workspace. Once someone connects Meta Ads as a shared connection, everyone on the team can build reports from it.
***
## Team Members
The Team Members page shows everyone in your workspace, their email, and their role (Owner or Member).
From this page you can:
* **Search** for a member by name or email
* **Invite new members** using the green "Invite Team Member" button
* **View roles & permissions** to understand what each role can do
* **Change a member's role** or remove them via the actions menu
Every workspace must have at least one Owner. Members can connect data sources and run queries, but only Owners can manage billing, invite users, and control team connections.
***
## Data Sources
The Data Sources page is your central hub for all platform connections. Each platform row shows the number of active connections your team has established.
Click any platform row to expand it and see individual connections with details like the login email, account count, scheduled queries, who added the connection, and last activity.
***
## Common tasks
In the left sidebar, under **Workspace**, click **Team Members**. Then click the green **Invite Team Member** button in the top right. Enter their email address and they will receive an invitation to join.
In the left sidebar, click **Data Sources** (under the **Platform** section). You will see all connected platforms. Click a platform to expand it and view individual connections, the accounts they can access, and any scheduled queries using them.
New connections are **public by default**, all workspace members can use them. To restrict access, expand a platform, click the three-dot menu on a connection, and select **Manage sharing**. You can make it restricted (specific members only) or keep it public (everyone on the team can use it).
***
## Key concepts
| Concept | What it means |
| ------------------------- | ----------------------------------------------------------------------- |
| **Owner** | Full access to billing, team management, and all connections |
| **Member** | Can connect data sources, run queries, and manage their own connections |
| **Public connection** | Any team member can use this connection in their queries (default) |
| **Restricted connection** | Limited to specific team members chosen by the connection owner |
***
## Next steps
Understand what Owners and Members can do
Reconnect, replace, archive, and share connections
Control who can access each connection
Browse all available metrics and dimensions
**Need help?** Use the chat widget in the bottom-right corner or email [support@detrics.io](mailto:support@detrics.io).
# Workspace Roles and Permissions
Source: https://support.detrics.io/workspace/roles-permissions
Understand workspace roles, what each role can do, and how permissions work in Detrics
**Last updated:** December 5, 2025
Every workspace member is assigned a role that determines what they can access and manage. This guide explains the two workspace roles and their permissions.
## Workspace Roles Overview
Full access to billing, team management, and all workspace settings. Can manage all connections and team members.
**Default role.** Can connect data sources and use all reporting features in Google Sheets and Looker Studio.
When you invite someone to your workspace, they automatically become a **Member**. Only existing Owners can promote Members to Owner status.
***
## Permissions by Category
### Team Management
| Permission | Owner | Member |
| ------------------ | :---------: | :-------: |
| User management | Full access | View only |
| License management | Full access | View only |
**User management** includes inviting new members, removing members, and changing member roles.
### Billing
| Permission | Owner | Member |
| ------------------ | :---------: | :-------: |
| Billing management | Full access | No access |
Only Owners can access billing settings, update payment methods, change plans, and view invoices.
### Data Source Connections
| Permission | Owner | Member |
| ------------------------------- | :---------: | :---------: |
| Manage own connections | Full access | Full access |
| View and use shared connections | Full access | Full access |
| Manage team connections | Full access | No access |
**Manage team connections** means the ability to reconnect, replace, archive, or modify sharing settings on connections created by other team members.
Both Owners and Members can:
* Connect new data sources
* Manage connections they created (reconnect, replace, archive)
* Use any shared connection in their queries
* Share their own connections with the team
Only Owners can:
* Manage connections created by other team members
* Override sharing restrictions on any connection
### Destinations
| Destination | Owner | Member |
| ---------------------- | :---------: | :---------: |
| Looker Studio | Full access | Full access |
| Google Sheets | Full access | Full access |
| BigQuery (coming soon) | Full access | Full access |
Destinations like Looker Studio, Google Sheets, and BigQuery have no restrictions at the workspace level. Access must be managed within each destination itself (e.g., sharing settings in Google Sheets or Looker Studio).
***
## Role Comparison
| Capability | Owner | Member |
| ------------------------------- | :---: | :----: |
| Create queries in Google Sheets | Yes | Yes |
| Build Looker Studio dashboards | Yes | Yes |
| Connect new data sources | Yes | Yes |
| Manage own connections | Yes | Yes |
| Use shared connections | Yes | Yes |
| Invite team members | Yes | No |
| Remove team members | Yes | No |
| Change member roles | Yes | No |
| Access billing settings | Yes | No |
| Manage team connections | Yes | No |
***
## When to Use Each Role
### Assign Owner Role When:
* The person needs to manage billing and subscriptions
* They should be able to invite or remove team members
* They need to manage connections created by others (e.g., when the original creator is unavailable)
* They're responsible for overall workspace administration
### Keep as Member When:
* They only need to create reports and dashboards
* They'll manage their own data source connections
* They don't need access to billing or team management
* They're a regular team member or client with access to specific data
***
## Managing Roles
### Promoting a Member to Owner
Navigate to your workspace settings and select the Team section.
Locate the team member you want to promote in the members list.
Click on their current role and select "Owner" from the dropdown.
The change takes effect immediately. The new Owner now has full workspace access.
### Demoting an Owner to Member
Navigate to your workspace settings and select the Team section.
Locate the Owner you want to change.
Click on their current role and select "Member" from the dropdown.
The user immediately loses access to billing and team management features.
**Cannot remove last Owner:** Every workspace must have at least one Owner. You cannot demote the last remaining Owner.
***
## Workspace Roles vs Connection Roles
It's important to understand the difference between workspace roles and connection roles:
| Type | Roles | Scope |
| -------------------- | ------------- | ------------------------------------------------------- |
| **Workspace roles** | Owner, Member | Apply to the entire workspace (billing, team, settings) |
| **Connection roles** | Owner, Editor | Apply to individual data source connections |
A workspace Member can still be a connection Owner for connections they create. These are separate permission systems.
Learn more about connection-level permissions in [Connection Sharing and Permissions](/workspace/shared-private-connections).
***
## Frequently Asked Questions
No. Only Owners can invite new team members to the workspace.
Yes. You can have as many Owners as needed. This is recommended for business continuity.
If the Owner is removed from the workspace, their connections remain but need a new owner. Another Owner should take over management of those connections. Make sure you always have at least one other Owner before removing someone.
No. Billing information is only visible to Owners.
Yes. Both Owners and Members count toward your workspace's licensed user count.
***
## Next Steps
Learn how connection-level sharing and permissions work
View and manage all your data source connections
**Need help?** If you have questions about roles or permissions, contact [support@detrics.io](mailto:support@detrics.io)
# Connection Sharing and Permissions
Source: https://support.detrics.io/workspace/shared-private-connections
Understand connection ownership, sharing permissions, and team collaboration in Detrics
**Last updated:** November 21, 2025
Detrics provides flexible connection sharing and permission controls to help your team collaborate effectively while maintaining security and data access control. This guide explains the different types of connection access, user roles, and what each role can do.
## Connection Types Overview
Every connection in Detrics is **public by default**, meaning all workspace members can use it in their queries. You can also restrict access to specific team members when needed.
Available to all members of your workspace by default. Everyone can use it
in their queries. Only connection owners and workspace owners can manage the
connection.
Limited to specific team members only. The connection owner selects exactly
who can access it. Perfect for client-specific or sensitive data.
***
## User Roles and Permissions
Detrics has a role-based permission system that determines what actions each user can perform on connections.
### Role Hierarchy
The team member who originally created/connected the data source. Has full control over their own connections.
Users who have been granted specific permissions to manage a connection. Can reconnect and modify settings but cannot delete.
**Workspace owners** can always access and manage all connections in the
workspace, regardless of sharing settings.
***
## Connection Owner Permissions
When you connect a data source, you become the connection owner with full control over that specific connection.
### What Connection Owners Can Do
Complete control over your own connections:
* **Reconnect** when credentials expire
* **Replace** the connection with a different account
* **Archive** or unarchive the connection
* **View** all account details and usage
* **Restrict** access to specific users
* **Generate** authentication links for external stakeholders
You maintain ownership even if you restrict the connection to specific users.
Decide how your connection is shared:
**Option 1: Keep it public (default)**
* All workspace members can create queries with it
* Only you and workspace owners can manage this connection (reconnect, replace, archive, manage sharing)
**Option 2: Restrict to specific users**
* Choose exactly which team members can create queries with it
* Perfect for client-specific or department-specific connections
* You can assign connection editors who can help manage the connection
**Changing your mind:** You can change sharing settings at any time. Restrictions take effect immediately.
Grant management permissions to other team members:
* **Add connection owners** who can help manage the connection
* **Remove access** from specific users at any time
Even when you delegate editing permissions, you remain the owner and retain full control.
Track how your connection is being used:
* See which scheduled queries use your connection
* View who has access (in the sharing menu)
* Monitor last activity timestamp
* Check account usage statistics
Click the number in the "Scheduled Queries" column to see exactly which queries are using your connection.
### What Connection Owners Cannot Do
**Limitations:** - Cannot access other users' restricted connections (unless
you're also the workspace owner) - Cannot modify workspace-level settings -
Cannot remove team members from the workspace
***
## Connection Editor Permissions
Connection editors are team members granted elevated permissions by the connection owner to help manage a connection.
### What Connection Editors Can Do
When credentials expire, editors can:
* Reconnect the data source with fresh credentials
* Authenticate using their own platform credentials
* Resume paused queries after reconnection
**Why this matters:** If the connection owner is unavailable and credentials expire, editors can maintain uptime without waiting for the owner to reconnect.
Full visibility into connection information:
* View associated accounts
* See which queries use the connection
* Check connection status and last activity
* Access account details and IDs
This helps editors troubleshoot issues and understand connection dependencies.
For platforms with multiple accounts (Google Ads, Facebook Ads, etc.), editors can:
* Add new accounts to the connection
* Remove accounts no longer needed
* Update account selections for queries
**Limitation:** Editors cannot replace the entire connection, only modify which accounts within the connection are available.
All standard query operations:
* Create new queries using the connection
* Schedule automatic updates
* Run manual query executions
* View and export data
### What Connection Editors Cannot Do
**Restrictions:** - **Cannot change sharing settings** - Only the owner can
modify who has access - **Cannot archive the connection** - Only owners can
archive or unarchive - **Cannot delete the connection** - Permanent actions
require owner permission - **Cannot replace the connection** - Only owners can
migrate queries to a different connection - **Cannot transfer ownership** -
The original creator remains the owner
### How to Grant Editor Access
If you're a connection owner and want to add editors:
Click the three-dot menu (⋮) next to your connection.
Open the sharing and permissions dialog.
* Choose "Restrict access" if you want to limit who can use this connection -
Select the team members you want to give access to - Set their permission
level to "Can edit" for those who should help manage the connection
Click "Save" and the selected users immediately receive their assigned permissions.
***
## Permission Scenarios
Understanding how permissions work in real-world situations:
### Scenario 1: New Team Member Onboarding
The workspace owner sends an invitation to join the workspace.
The new team member accepts and joins the workspace.
They immediately see all public connections and can use them in their queries.
For restricted connections, they need to ask the connection owner to be added.
The new member can connect their own data sources, which are public by default.
### Scenario 2: Connection Owner Goes on Vacation
The connection owner grants owner permissions to one or more trusted team members so they can manage the connection while away.
If the connection needs reconnection while the owner is away.
The team member with owner permissions can reconnect using the same credentials (the owner's account) to maintain service and keep queries running.
Any paused queries resume running after successful reconnection.
When the owner returns, they still have complete control and can revoke temporary owner permissions if needed.
### Scenario 3: Client-Specific Access
An agency team member connects a client's ad account.
The owner restricts access to only team members working on that client.
Team members on different client accounts cannot see or access this
connection.
The workspace owner can still access all connections for administrative purposes.
### Scenario 4: Team Member Leaves Company
Review all connections created by the leaving team member and identify which queries depend on them.
If the leaving member used personal credentials, the workspace owner must replace those connections with compatible connections (same accounts) from current team members. This ensures queries continue running without interruption.
**Important:** Reconnections must use the same credentials. Since the leaving member's credentials won't be available, connection replacement is the only option to maintain active queries.
Archive any connections no longer needed.
Finally, remove the team member's access to the workspace.
***
## Permission Matrix
Quick reference for what each role can do:
| Permission | Owner
Can use the connection and manage all its settings | Editor
Can only use the connection in queries |
| ------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------- |
| Use connection to create queries in Google Sheets | ✅ | ✅ |
| Use connection to build Looker Studio dashboards | ✅ | ✅ |
| Share connection with other members | ✅ | ❌ |
| Replace connection | ✅ | ❌ |
| Archive connection | ✅ | ❌ |
| Re-connect connection | ✅ | ❌ |
**Note:** Connection owners are determined when the connection is created. A workspace owner can grant you owner permissions for a specific connection.
***
## Changing Connection Sharing Settings
### Making a Connection Public
By default, all connections are public. If you've restricted a connection and want to make it public again:
Click the three-dot menu (⋮) on your connection.
Open the sharing settings dialog.
Remove all user restrictions to make it available to all workspace members.
Click "Save" and the connection immediately becomes visible to everyone.
### Restricting a Public Connection
Access the connection's sharing menu.
Choose the option to limit access to specific users.
Select which team members should have access. Unselected users will lose
access.
Restrictions take effect immediately. Users without access will no longer see the connection.
**Impact on existing queries:** If someone has queries using a connection and
you remove their access, those queries will fail. Consider the impact before
restricting access.
***
## Understanding Connection Indicators
Visual cues help you quickly identify connection permissions:
**Meaning:** Public connection
All workspace members can see and use this connection. This is the default state for all connections.
**Meaning:** Restricted access
Only specific team members can access this connection. Click "Manage sharing" to see who has access.
**Meaning:** You are the connection owner
Appears in the sharing menu to indicate you created this connection and have full control.
**Meaning:** You have editor permissions
Shown in the sharing menu when someone has granted you editor access to their connection.
***
## Troubleshooting Permissions
**Possible reasons:**
* The connection is restricted and you don't have access
* The connection was archived
* The connection was deleted
**Solution:**
1. Ask the connection owner to grant you access
2. Contact your workspace owner for access
3. Create your own connection to the same data source
**Meaning:** The connection is restricted and you don't have permission to use it.
**Solution:**
* Contact the connection owner shown in the "Added by" column
* Ask your workspace owner to grant you access
**Reason:** You need to be the connection owner or have editor permissions.
**Solution:**
1. Contact the connection owner (shown in "Added by")
2. Ask them to reconnect or grant you editor permissions
3. If owner unavailable, contact workspace owner for help
**Solution (for workspace owners):** 1. Go to the Data Sources page 2. Find
connections created by the former team member 3. Reconnect with company
credentials to maintain access 4. Update sharing settings as needed 5.
Consider replacing connections in queries if necessary
**Reason:** Only connection owners and workspace owners can change sharing settings.
**Solution:**
* If it's not your connection, ask the owner to adjust sharing
* Workspace owners can override and modify any connection's settings
***
## Security Considerations
**Protect sensitive data:** Be mindful of who can access connections,
especially for connections containing: - Customer personal information -
Financial data - Client confidential data - Sensitive business information
### Security Best Practices
Use restricted access for sensitive client data rather than keeping connections public. Only grant access to team members who actually need it.
Regularly review who has access to your connections: - Click "Manage sharing"
on important connections - Remove users who no longer need access - Verify
editor permissions are still appropriate
For shared connections, use company email accounts rather than personal emails
to ensure continuity if team members leave.
Workspace owners should regularly review workspace membership and remove users who should no longer have access.
***
## Next Steps
Now that you understand connection permissions and sharing:
* **[View and manage connections](/workspace/view-manage-connections)** - Learn how to perform connection management tasks
* **[How to automate a query](/data-destination/google-sheets/how-to-automate-a-query)** - Start using your connections in scheduled queries
* **[Google Sheets Quickstart](/quickstart/google-sheets)** - Get started with Detrics if you're new
**Need help?** If you have questions about permissions or connection
management, contact [support@detrics.io](mailto:support@detrics.io) or use the chat widget in the
bottom-right corner.
# View and Manage Connections
Source: https://support.detrics.io/workspace/view-manage-connections
Learn how to view, manage, and control access to your data source connections in Detrics
**Last updated:** November 21, 2025
The Data Sources page is your central hub for managing all connections between Detrics and your data sources. Here you can view connection details, manage access permissions, reconnect expired credentials, and control how your team collaborates on data connections.
## Quick Navigation
Jump to the section you need:
* [Understanding Connection Details](#understanding-connection-details)
* [Managing Connection Access](#managing-connection-access)
* [Reconnecting Data Sources](#reconnecting-data-sources)
* [Replacing Connections](#replacing-connections)
* [Sharing Authentication Links](#sharing-authentication-links)
* [Archiving Connections](#archiving-connections)
* [Viewing Associated Accounts](#viewing-associated-accounts)
* [Connecting New Data Sources](#connecting-new-data-sources)
***
## Understanding Connection Details
When you expand a data source, you'll see a detailed table with all connections for that platform.
### Connection Information Displayed
Each connection row shows:
#### Data Source Login
The email, username, or account identifier used to authenticate with the platform. This helps you identify which account was connected.
**What you'll see:** For most platforms, this is the email address or account
name. For e-commerce platforms like Shopify, it's the store name.
#### Accounts
The number of accounts or ad accounts associated with this connection. Click the account badge to view detailed information about each account.
**Not all platforms show accounts:** Single-account platforms like Stripe and
Shopify don't display the accounts column since each connection represents a
single account.
#### Scheduled Queries
Shows how many scheduled queries are using this connection. Click the badge to navigate directly to the Scheduled Queries page filtered by this connection.
#### Added By
The team member who originally connected this data source to your workspace. This helps track connection ownership and accountability.
#### Last Activity
Timestamp showing when the connection was last used or modified. This updates when:
* A query executes using this connection
* The connection is reconnected
* Account selections are modified
* Permissions are changed
#### Sharing Status
Icons indicating access permissions:
* **No icon** - Private connection (only you can access)
* **Users icon** - Shared with entire team
* **Lock icon** - Restricted access (shared with specific users only)
***
## Managing Connection Access
Control who can access and use your connections through the sharing and permissions system.
### Opening the Sharing Menu
1. Expand the data source to view its connections
2. Click the three-dot menu (⋮) on the connection row
3. Select **"Manage sharing"**
### Sharing Options
Everyone in the workspace can use the connection to create queries. Only connection owners and workspace owners can replace, re-connect, archive and manage sharing.
Share with specific team members only.
**How to set up:**
1. Open the actions menu
2. Select "Manage sharing"
3. Choose specific users from your workspace
4. Click "Save"
**Use case:** Client-specific accounts or sensitive data sources that only certain team members should access.
Learn more about connection permissions and roles in [Learn about shared and
private connections](/workspace/shared-private-connections).
***
## Reconnecting Data Sources
When a connection's credentials expire, you'll need to reconnect to restore access.
### When to Reconnect
You'll see a **"Reconnect Required"** status when:
* OAuth tokens have expired (on Meta's case after 60 days)
* Passwords were changed on the source platform
* Platform security settings were updated
* Access was revoked and needs to be re-granted
### How to Reconnect
Click the three-dot menu (⋮) next to the connection that needs reconnection.
Click **"Reconnect"** from the dropdown menu.
You'll be redirected to the platform's login page. Sign in with **the same credentials** used for the original connection.
**Important:** You must use the same account credentials.
Approve the authorization request to allow Detrics to access your data.
You'll see a success message. Any paused queries using this connection will automatically resume.
**Automatic resume:** When you reconnect a data source, any scheduled queries
that were automatically paused due to the expired connection will resume and
run on their next scheduled time.
***
## Replacing Connections
Replace an existing connection with a new one while automatically migrating all associated queries.
### When to Replace
Use connection replacement when you need to:
* Switch to a different account permanently
* Consolidate queries from multiple connections
* Update to a connection with different account access
* Transfer queries from an old connection to a new one
### How to Replace a Connection
Click the three-dot menu (⋮) on the connection you want to replace.
Choose **"Replace connection"** from the menu.
**Not available for all platforms:** Single-account platforms (Stripe, Shopify, TiendaNube, WooCommerce) don't support connection replacement since each connection represents one account.
A dialog will show all available connections for that platform. Select the
connection you want to use as the replacement.
Review the changes and click "Replace". All queries using the old connection
will be automatically updated to use the new connection and account selection.
**This action cannot be undone:** Once you replace a connection, all
associated queries are immediately updated. Make sure you've selected the
correct replacement connection and accounts.
***
## Sharing Authentication Links
Generate temporary authentication links to help clients and external stakeholders connect their own data sources without sharing credentials.
### How It Works
Authentication links allow external actors to:
* Connect their own account for the same platform
* Authenticate without sharing passwords
* Add their connection to your company's workspace
### Generating a Share Link
Click on the platform card to expand and view connections.
You'll find this button in the top-right of the connections table.
A unique link is automatically generated and copied to your clipboard. You'll
see a success message confirming this.
Send the link via email, Slack, or your preferred communication channel.
When they click the link, they'll be guided through the authentication flow to connect their own account. You'll receive an email with confirmation.
**Link expiration:** Authentication links are valid for 7 days. After that,
you'll need to generate a new link.
**Use case:** Perfect for sending over to your clients, avoiding requests for
admin priviliges on datasources.
***
## Archiving Connections
Archive connections you're no longer actively using to keep your workspace organized.
### When to Archive
Consider archiving when:
* A client project has ended
* You've replaced the connection with a new one
* The account is no longer accessible
* You want to declutter without permanently deleting
### How to Archive
Click the three-dot menu (⋮) on the connection you want to archive.
Click **"Archive connection"** from the dropdown menu.
The connection will be moved to archived status and hidden from the main view.
### Viewing Archived Connections
Click on the platform card that contains archived connections.
If you have more than 5 connections for that platform and some are archived,
you'll see a checkbox at the top of the table: "Show archived connections".
Check the box to reveal archived connections alongside active ones.
### Unarchiving a Connection
1. Show archived connections using the toggle
2. Find the archived connection
3. Click the three-dot menu (⋮)
4. Select **"Unarchive connection"**
5. The connection returns to active status
**Queries remain linked:** Archiving a connection doesn't remove it from
scheduled queries. If a query is still using an archived connection, it will
continue to work but you might want to update it to use an active connection.
***
## Viewing Associated Accounts
For platforms that support multiple accounts (like Facebook Ads or Google Ads), view detailed information about all accounts associated with a connection.
### Accessing Account Details
Click the platform card to view its connections.
In the "Accounts" column, click the badge showing the number of accounts
(e.g., "5 accounts").
A dialog opens displaying:
* Account names
* Account IDs
* Account status (active, missing, etc.)
* Which accounts are being used in active queries
### Understanding Account Status
Accounts currently available and accessible through the connection. These can be used in queries.
Accounts that were previously available but are no longer accessible. This happens when:
* Access was revoked on the platform
* The account was deleted
* Permissions changed
**What to do:** Reconnect the data source or contact the account owner to restore access.
The modal highlights which accounts are actively being used in your scheduled queries, helping you understand dependencies before making changes.
**No accounts showing?** If you've just connected, it can take a few minutes
for the platform to sync and load accounts. Refresh the page after a short
wait.
***
## Connecting New Data Sources
Connect additional platforms that you haven't used yet in your workspace.
### Available Data Sources
Scroll down past your connected data sources to see the **"Connect to new data source"** section. This displays all Detrics connectors you haven't connected yet.
### Connecting a New Source
Browse or search for the data source you want to connect.
Click anywhere on the card for the platform you want to connect.
You'll be redirected to the platform's login page. Sign in with your
credentials.
Approve Detrics' access request to allow data retrieval.
Your new connection appears in the "Connected data sources" section and is ready to use in queries.
**Supported platforms:** Detrics supports 30+ data sources including Google
Ads, Facebook Ads, LinkedIn Ads, TikTok Ads, Instagram Insights, Google
Analytics 4, Shopify, Stripe, and more.
***
## Troubleshooting
This means the connection is restricted and hasn't been shared with you. Contact the connection owner (shown in "Added by") or your workspace administrator to request access.
If you see "No accounts" after connecting: 1. Wait a few minutes for the
platform to sync 2. Refresh the page 3. If still no accounts appear, try
reconnecting 4. Contact support if the issue persists
* Use the search bar to search by name, email, or ID - Check if the connection
is archived (enable "Show archived connections") - Verify you're looking at
the correct data source platform - Confirm the connection wasn't deleted by
another team member
If reconnection doesn't work: - Ensure you're using the same credentials as
the original connection - Clear your browser cache and cookies - Check if you
have the necessary permissions on the source platform - Contact
[support@detrics.io](mailto:support@detrics.io) if problems continue
Connection replacement is not available for single-account platforms:
* Stripe
* Shopify
* TiendaNube
* WooCommerce
For these platforms, you'll need to create a new connection and manually update your queries.
***
## Next Steps
Now that you understand how to manage connections, learn about:
* **[Shared and private connections](/workspace/shared-private-connections)** - Understand roles, permissions, and collaboration features
* **[How to automate a query](/data-destination/google-sheets/how-to-automate-a-query)** - Use your connections in scheduled queries
**Need help?** If you have questions about connection management, reach out to
[support@detrics.io](mailto:support@detrics.io) or use the chat widget in the bottom-right corner.