BizKitHub
DocsAPI ReferenceForm/bff/form/reorder-fields
postFormAdmin BFF

/bff/form/reorder-fields

Sets the display order of all fields in a form. Pass all field keys in the desired order — the position of each field is set by its index in the array.

FormpostBffFormReorder-fields

Parameters

JSON body

Request body

application/json
formCodestringRequired

Form code.

Examplecontact-form
fieldKeysstring[]Required

Ordered array of field keys. Position is assigned by index (0-based).

Response schema

1 status code documented

200Success
successbooleanRequired

Response example

application/json
{
  "success": false
}

Request example

POST /bff/form/reorder-fields

post
curl -X POST "https://api.bizkithub.com/bff/form/reorder-fields" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "formCode": "contact-form",
  "fieldKeys": [
    "string"
  ]
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key