List Forms
Retrieve the forms in an account.
Settings:
URL | Method |
|---|---|
| JSON via GET |
Authorization:
Header Parameter | Description |
|---|---|
| User API key; access depends on the user's permissions. |
Path Parameters:
Parameter | Description | Required |
|---|---|---|
| Account identifier. | Yes |
Request Example:
curl -s -H "api_access_token: $TOKEN" "$BASE_URL/api/v1/accounts/$ACCOUNT_ID/forms"Response:
[
{
"publicId": "1",
"accountId": "<account-id>",
"name": "Customer request",
"status": "published",
"submissionCount": 0,
"updatedAt": "2026-09-22T12:00:29.433Z"
}
]Response-Explain:
Parameter | Description |
|---|---|
Root array | Form summaries. |
| Public form identifier (string). |
| Account identifier (string). |
| Form name. |
| Form status. Enum: |
| Number of submissions reported for the form. |
| Last update timestamp in ISO 8601 format. |