Documentation

GET form/list

Used for

Retrieve all form definitions of the license, including the number of fields and the number of submissions per form.

Authentication

User must be logged in at administrator level and have the api_form_get right.

Parameters

No parameters. The forms of the authenticated license are returned.

Example

Request all forms.

GET api/rest/form/list
Response:
[
  {
    "form_id": 12,
    "form_desc": "Contact",
    "form_default": "1",
    "field_count": 3,
    "submissions_count": 47,
    "owner_id": 1234
  },
  {
    "form_id": 18,
    "form_desc": "Request brochure",
    "form_default": "0",
    "field_count": 5,
    "submissions_count": 12,
    "owner_id": 1234
  }
]
The following right may be necessary in order to use this functionality.