CS Tickets Table
The CS Tickets table tracks support ticket lifecycle events with agent, channel, tag, and satisfaction survey data. One row per ticket event (opened, closed, reopened).
Table GuideWhat You Can Answer With This Table
- How many tickets are being created vs. closed over time? — filter by
event_type, group byevent_date- How do satisfaction scores vary by agent or channel? — use
survey_score, group byassignee_user_nameorchannel- Which products or orders are associated with support tickets? — use
products_names,total_order_value,has_refundBefore You Query
- Required field:
event_date- Event-driven grain: Each ticket lifecycle event (opened, closed, reopened) generates a separate row. A single ticket may appear multiple times. Filter by
event_typeto isolate specific events (e.g.,ticket-openedfor new ticket volume).- Order attribution window: The
orders,products_names,skus, and related columns include orders placed up to 30 days before ticket creation. Tickets without a linked customer have empty order attribution.Key Relationships
Table Join Key Use This Join To Customers customer_idPrioritize and analyze support tickets with customer profile and value context When to Use a Different Table
- Use CS Messages table when you need individual message content. The CS Tickets table is for ticket-level metadata and lifecycle events.
- Use CS Events table when you need a full event-level support audit log. The CS Tickets table surfaces ticket-created, ticket-closed, and ticket-reopened events with ticket metadata.
- Use Customer Support Agg Metrics table when you need aggregated daily support KPIs. The CS Tickets table is for ticket-level detail.
Dimensions
Dimensions are immutable properties that can be used for grouping data.
| Title | ID | Type | Description |
|---|---|---|---|
| Event Date | event_date | date | The date the CS ticket event occurred (e.g. the opened date for ticket-opened events, the closed date for ticket-closed events). Based on the shop time zone at the moment of the event (or the user time zone, if no sales platform is connected). |
| Event Day | event_date.day | date | The day the event occurred. Derived from event_date. |
| Event Week | event_date.week | date | The Sunday of the week during which the event occurred. Derived from event_date. |
| Event Month | event_date.month | date | The month during which the event occurred. Derived from event_date. |
| Event Quarter | event_date.quarter | date | The first month of the quarter during which the event occurred. Derived from event_date. |
| Event Year | event_date.year | date | The year during which the event occurred. Derived from event_date. |
| Assigned Agent ID | assignee_user_id | string | The unique identifier of the assigned support agent. Example value: |
| Assigned Agent Name | assignee_user_name | string | The full name of the assigned support agent. Example value: |
| Channel | channel | string | The channel through which the ticket was created. Example values: |
| Ticket Closed Date | closed_at | timestamp | The time the ticket was closed. Formatted according to the ISO 8601 international standard. Example value: |
| Ticket Created Date | created_at | timestamp | The time the ticket was created. Formatted according to the ISO 8601 international standard. Example value: |
| Customer Email | customer_email | string | The email address of the customer. Example value: |
| Customer ID | customer_id | string | The unique identifier assigned to the customer. Example value: |
| Event Type | event_type | string | The type of event related to the ticket. Example values: |
| From Agent | from_agent | boolean | True if the event was initiated by a support agent. Possible values: |
| Language | language | string | The language used in the ticket. Example values: |
| Ticket Priority | priority | string | The priority level of the ticket. Example values: |
| Ticket Status | status | string | The current status of the ticket. Example values: |
| Subject | subject | string | The subject line of the first message in the ticket. Example values: |
| Survey Comment | survey_comment | string | The customer's feedback from the post-resolution survey. Example value: |
| Survey Score | survey_score | string | The rating score given by the customer in a post-resolution survey. Example values: |
| Survey Scored Date | survey_scored_at | timestamp | The time the survey was scored. Formatted according to the ISO 8601 international standard. Example value: |
| Survey Sent Date | survey_sent_at | timestamp | The time the survey was sent to the customer. Formatted according to the ISO 8601 international standard. Example value: |
| Tags | tags | record repeated | Tags associated with the ticket, used for categorization. Example value: |
| Ticket Updated Date | updated_at | timestamp | The time the ticket was last updated. Formatted according to the ISO 8601 international standard. Example value: |
Updated 16 days ago