Skip to main content
GET
Get track report

Authorizations

x-api-key
string
header
required

API key for authentication. Generate keys in the Doozy dashboard.

Path Parameters

trackId
string
required

The unique identifier of the track

Minimum string length: 1
Example:

"wf_abc123"

Query Parameters

limit
integer
default:25

Maximum number of enrollees to return (1-100, default 25)

Required range: 1 <= x <= 100
Example:

25

starting_after
string

Cursor for pagination - the instance ID of the last enrollee from the previous page

Example:

"inst_abc123"

ending_before
string

Cursor for pagination - the instance ID of the first enrollee from the next page (for backward pagination)

Example:

"inst_xyz789"

status
enum<string>
default:all

Filter enrollees by status (default: all)

Available options:
active,
delivered,
completed,
failed,
paused,
canceled,
all
Example:

"all"

from_date
string

Filter enrollees started at or after this date (ISO 8601)

Example:

"2026-01-01T00:00:00.000Z"

to_date
string

Filter enrollees started at or before this date (ISO 8601)

Example:

"2026-01-31T23:59:59.999Z"

step_type
enum<string>

Only include step progress for steps of this type

Available options:
message,
quiz,
poll,
survey,
individualIntroductions,
mentorAssignment,
delay,
addToWorkflow,
tasks
Example:

"survey"

step_id
string

Only include step progress for this specific step ID

Example:

"step_abc123"

include_step_results
enum<string>
default:true

Include activity results (survey answers, quiz responses, etc.) in step progress (default true)

Available options:
true,
false
Example:

"true"

Response

Track report with summary, enrollees, and optional analytics

object
enum<string>
required

Object type identifier

Available options:
track_report
Example:

"track_report"

id
string
required

Track ID

Example:

"wf_abc123"

name
string
required

Track name

Example:

"New Hire Onboarding"

state
enum<string>
required

Current track state

Available options:
draft,
active,
paused,
archived
Example:

"active"

trigger_type
enum<string>
required

How users are added to the track

Available options:
user_join,
manual_user_trigger,
schedule,
work_anniversary,
added_by_another_workflow,
self_join
Example:

"user_join"

summary
object
required

Summary statistics for the report

step_analytics
object[]
required

Per-step aggregate analytics computed from all enrollees matching the filter, not just the current page.

enrollees
object[]
required

Paginated list of enrollees with step progress

total_enrollees
integer
required

Total number of enrollees matching the filter

Example:

100

has_more
boolean
required

Whether there are more enrollees available beyond this page

Example:

true

url
string
required

The URL for accessing this report

Example:

"/v1/tracks/wf_abc123/report"

next_cursor
string | null
required

Cursor to fetch the next page of enrollees. Pass as starting_after in subsequent requests.

Example:

"inst_xyz789"

previous_cursor
string | null
required

Cursor to fetch the previous page of enrollees. Pass as ending_before in subsequent requests.

Example:

"inst_abc123"