Skip to main content
GET
Get a routing form submission
Returns one routing form submission with its answers. route holds the destination that the answers selected, as it stood at the time of the submission. utm and adAttribution hold the campaign values that the page carried when the invitee sent the submission.

The two forms of every answer

Each answer ships twice:
  • answer is the display value. Show this value to a person.
  • rawAnswer is the stored value. For a question that maps onto a CRM select attribute it is the canonical {"id","value","color"} JSON that identifies the option. Map into a CRM by this value.
questionsAndAnswers repeats the same answers as a flat map from question text to display value.
Never show rawAnswer to a person. For a CRM select answer it is a JSON blob, not a label.
The id is a UUID. A malformed id answers 404, not 422. A submission outside your workspace answers 404 as well.

Authorizations

Authorization
string
header
required

Path Parameters

id
string<uuid>
required

UUID of the submission.

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

submission
object

One set of answers that an invitee sent through a routing form, together with the route that the answers selected.

Last modified on September 9, 2026