Return a list of forms this user can access

GET /form/list

A full list of forms that can be selected

Responses

  • 200

    OK

    Hide response attributes Show response attributes array[object]
    • url string
    • title string

      The title of the form for the user to select

    • active integer

      The status of the form 1: Active 0: Not Active -1: Deleted

      Values are -1, 0, or 1.

    • The time this form becomes active - UTC. Format YYYY-MM-DD HH:NN:SS

    • The time this form stops being active - UTC. Format YYYY-MM-DD HH:NN:SS

GET /form/list
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/form/list \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "url": "https://demo.infoodle.com/form_process?g=8dd5de45-6f51-48fc-8e77-f4a428158f71",
    "title": "Registration form",
    "active": -1,
    "form_active_from_utc": "2022-06-01 15:00:00",
    "form_active_to_utc": "2022-06-30 15:00:00"
  }
]