Skip to main content
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

page
integer
default:"1"
page_size
integer
default:"50"
Maximum: 200.
status
string
Comma-separated. Allowed: Draft, Pending, Accepted, Rejected. Defaults to all four.
form_id
string
Filter to applications submitted to a specific form.
contact_id
string
Filter to applications submitted by a specific contact.
updated_from
string
ISO-8601 timestamp. Only return applications updated at or after this time. Use with updated_to for incremental sync.
updated_to
string
ISO-8601 timestamp. Only return applications updated at or before this time.

Response

data
array
curl -H "X-API-KEY: your_api_key" \
  "https://www.gomry.com/api/v1/applications?form_id=FORM_ID&status=Accepted"