Skip to main content
GET
List routing form submissions
Returns a paginated list of the routing form submissions in your workspace. The submissions of every routing form sit in one feed, so routingFormId filters that feed rather than addressing a sub-resource. Narrow the feed further by creation time with minCreatedAt and maxCreatedAt, and by destination with routeType. Results are newest first. Set sort to asc to read the oldest submission first. Each entry carries the same payload as Get a Routing Form Submission.
Every answer ships twice. Read answer for anything a person sees, and rawAnswer to map the answer into a CRM. The overview explains why.

Authorizations

Authorization
string
header
required

Query Parameters

routingFormId
string<uuid>

Return only the submissions of this routing form. A routing form outside your workspace answers 404.

minCreatedAt
string<date-time>

Return only the submissions that were created at or after this time.

maxCreatedAt
string<date-time>

Return only the submissions that were created at or before this time. It must not precede minCreatedAt.

routeType
enum<string>

Return only the submissions that the given kind of route took.

Available options:
EVENT_TYPE,
URL,
CUSTOM_PAGE,
TEAM_PAGE
sort
enum<string>
default:desc

Sort direction on createdAt.

Available options:
asc,
desc
page
integer
default:1

Page number.

Required range: x >= 1
count
integer
default:20

Number of submissions per page.

Required range: 1 <= x <= 100

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

data
object
Last modified on September 9, 2026