BizKitHub
DocsAPI ReferenceForm/bff/form/duplicate-field
postFormAdmin BFF

/bff/form/duplicate-field

Creates a copy of an existing field with a new auto-generated key. The duplicate is placed right after the original field. All properties (type, label, options, etc.) are copied.

FormpostBffFormDuplicate-field

Parameters

JSON body

Request body

application/json
formCodestringRequired

Form code.

Examplecontact-form
fieldCodestringRequired

Key of the field to duplicate.

Exampleemail

Response schema

1 status code documented

200Success
successbooleanRequired

Response example

application/json
{
  "success": false
}

Request example

POST /bff/form/duplicate-field

post
curl -X POST "https://api.bizkithub.com/bff/form/duplicate-field" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "formCode": "contact-form",
  "fieldCode": "email"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key