Skip to main content

List Forms

List Forms Endpoint

URL

GET /v1/forms

Description

This endpoint retrieves a list of forms associated with the team specified by the provided API key.

Responses

Success Response

  • Code: 200 OK
  • Content:
    {
    "id": "lf_76b3e537c8164b2c923f41bc98402977",
    "created": "2024-06-19T13:52:41.2292409Z",
    "object": "forms_list",
    "forms": [
    {
    "as_text": "FORM_CONTENT_HERE",
    "fields": [
    {
    "id": "c3bf",
    "name": "Name",
    "form_name": "topmostSubform[0].Page1[0].f1_01[0]",
    "form_type": "Text"
    },
    {
    "id": "fac0",
    "name": "Surname",
    "form_name": "topmostSubform[0].Page1[0].f1_02[0]",
    "form_type": "Text"
    },
    //so on
    ],
    "form_url": "https://example.com/file.pdf",
    "id": "example-id"
    },
    //other forms here
    ]
    }