Skip to main content
GET
/
applications
/
{applicationId}
curl -H "X-API-KEY: your_api_key" "https://www.gomry.com/api/v1/applications/APPLICATION_ID"
{
  "history": [
    {
      "status": {},
      "changed_by": {},
      "changed_at": {}
    }
  ]
}

Get Application

Returns a single application (form submission) by ID. Required scope: applications:read

Path Parameters

applicationId
string
required

Response

Returns the full application schema (see List Applications), plus a history array that the list endpoint omits.
history
array
The application’s status change log, oldest-first. Append-only — each entry records a status transition recorded inside Gomry (e.g. acceptance/rejection). It does not track changes to metadata; keep your own changelog inside metadata if you need one.
curl -H "X-API-KEY: your_api_key" "https://www.gomry.com/api/v1/applications/APPLICATION_ID"