Skip to main content
GET
/
forms
curl -H "X-API-KEY: your_api_key" "https://www.gomry.com/api/v1/forms"
{
  "data": [
    {
      "id": "<string>",
      "name": {},
      "description": {},
      "status": {},
      "cover_image": {},
      "questions": [
        {
          "id": {},
          "title": {},
          "subtitle": {},
          "type": {},
          "user_info": {},
          "required": true,
          "options": [
            "<string>"
          ],
          "field_id": {}
        }
      ],
      "created_at": {},
      "updated_at": {}
    }
  ]
}

List Forms

Returns a paginated list of forms belonging to your organization. Forms include the question schema you’ll use to interpret answers from the Applications endpoint. Required scope: forms:read

Query Parameters

page
integer
default:"1"
page_size
integer
default:"50"
Maximum: 200.
status
string
default:"active"
Comma-separated. Allowed: active, inactive.

Response

data
array
curl -H "X-API-KEY: your_api_key" "https://www.gomry.com/api/v1/forms"