v1
latestOpenAPI 3.0.22026-07-146168117.0 KBForm Fields
This endpoint returns the list of fields available for a specific form by slug or ID. This feature is available as part of the Standard API.
get/forms/{slug_or_id}/fields
Path parameters
slug_or_idstring required
The form's slug, custom slug or ID.
Query parameters
searchstring
Search fields by name.
Response
Successfully returned fields for a single form that matched the provided slug or ID
Example response
{
"results": {
"fields": [
{
"key": "3jbh8",
"required": true,
"type": "text"
}
]
}
}