Skip to main content
GET
/
forms
Get Forms
curl --request GET \
  --url https://services.leadconnectorhq.com/forms \
  --header 'Authorization: Bearer <token>' \
  --header 'Version: <version>'
{
  "forms": [
    {
      "id": "YSWdvS4Is98wtIDGnpmI",
      "name": "Form 1",
      "locationId": "ve9EPM428h8vShlRW1KT"
    }
  ],
  "total": "20"
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Query Parameters

locationId
string
required
Example:

"ve9EPM428h8vShlRW1KT"

skip
number
Example:

0

limit
number
default:10

Limit Per Page records count. will allow maximum up to 1000 and default will be 10

Example:

20

type
string
Example:

"folder"

productType
string
required

Response

Successful response

forms
object[]
total
number

Total number of forms

Example:

"20"

Last modified on March 4, 2026