curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/applications?form_id=FORM_ID&status=Accepted"
{
"data": [
{
"id": "<string>",
"form_id": {},
"contact_id": {},
"user_id": {},
"status": {},
"answers": [
{
"question_id": {},
"question": {},
"type": {},
"answer": "<any>"
}
],
"payment_id": {},
"metadata": {},
"utm_source": {},
"utm_medium": {},
"utm_campaign": {},
"utm_content": {},
"utm_term": {},
"submitted_at": {},
"created_at": {},
"updated_at": {}
}
]
}Applications
List Applications
List form submissions (applications) for your organization
GET
/
applications
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/applications?form_id=FORM_ID&status=Accepted"
{
"data": [
{
"id": "<string>",
"form_id": {},
"contact_id": {},
"user_id": {},
"status": {},
"answers": [
{
"question_id": {},
"question": {},
"type": {},
"answer": "<any>"
}
],
"payment_id": {},
"metadata": {},
"utm_source": {},
"utm_medium": {},
"utm_campaign": {},
"utm_content": {},
"utm_term": {},
"submitted_at": {},
"created_at": {},
"updated_at": {}
}
]
}List Applications
Returns a paginated list of form submissions. Each application is one user’s response to a form. Required scope:applications:read
Query Parameters
integer
default:"1"
integer
default:"50"
Maximum:
200.string
Comma-separated. Allowed:
Draft, Pending, Accepted, Rejected. Defaults to all four.string
Filter to applications submitted to a specific form.
string
Filter to applications submitted by a specific contact.
string
ISO-8601 timestamp. Only return applications updated at or after this time. Use with
updated_to for incremental sync.string
ISO-8601 timestamp. Only return applications updated at or before this time.
Response
array
Show Application object
Show Application object
string
string | null
string | null
The submitter’s contact ID
string | null
The submitter’s user ID, if signed in
string | null
Draft, Pending, Accepted, Rejectedarray
string | null
Linked payment, if the form requires payment
object
Free-form integration data. Keys are client-defined and never interpreted by Gomry. Writable via Update Application. Empty object if never set.
string | null
utm_source captured from the form URL at submission timestring | null
utm_medium captured from the form URL at submission timestring | null
utm_campaign captured from the form URL at submission timestring | null
utm_content captured from the form URL at submission timestring | null
utm_term captured from the form URL at submission timestring | null
string | null
string | null
curl -H "X-API-KEY: your_api_key" \
"https://www.gomry.com/api/v1/applications?form_id=FORM_ID&status=Accepted"

