cURL
curl --request PATCH \ --url https://geniusforms.ai/api/v1/forms/{id}/fields/reorder \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <api-key>' \ --data ' { "fieldIds": [ 3, 1, 2, 4 ] } '
{ "fields": [ { "id": 123, "order": 123 } ] }
Reorder all fields in a form. Must include all field IDs.
API key obtained from your GeniusForms dashboard
All field IDs in the desired order
[3, 1, 2, 4]
Fields reordered
Show child attributes