Skip to content

List Fields

GET
/admin/forms/{id}/fields
curl --request GET \
--url 'http://localhost:9000/admin/forms/example/fields?limit=50&offset=0'
id
required
string
limit
integer
default: 50
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
fields
Array<object>
object
id
string
name
string
label
string
field_type
string
required
string
options
string
sort_order
string
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"fields": [
{
"id": "example",
"name": "example",
"label": "example",
"field_type": "example",
"required": "example",
"options": "example",
"sort_order": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}