Make a duplicate of an existing form Run in API Explorer
Ask AI
POST
/api/v1/form/{form_uuid}/duplicate
curl \
--request POST 'https://api.plannrcrm.com/api/v1/form/6ff8f7f6-1eb3-3525-be4a-3932c805afed/duplicate' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (201)
{
"uuid": "7d6a3f76-2819-4b46-9ba0-054542d0d38b",
"created_at": "2026-06-09T14:10:13+01:00",
"updated_at": "2026-06-09T14:10:13+01:00",
"title": "Annual Catchup 2022",
"description": "This is the annual catchup form for 2022",
"live": true,
"visibility": "public",
"sections": {
"uuid": "89a6e9fc-f77b-4d6b-8a5e-90f90e1d1e7e",
"created_at": "2026-06-09T14:10:13+01:00",
"updated_at": "2026-06-09T14:10:13+01:00",
"section": "App\\Http\\Resources\\FormSectionResource",
"title": "What is your name?",
"help_text": "Gareth",
"caption": "Your full legal name",
"type": "string",
"required": true,
"position": 1,
"selection_options": [
"option 1",
"option 2"
],
"target_field": "name",
"key": "what_is_your_name",
"linked_question": "App\\Http\\Resources\\FormBuilder\\LinkedFormQuestionResource",
"linked_primary": true
},
"allowed_hosts": [
"domain.com",
"subdomain.domain.com"
],
"draft_submissions_count": 5,
"submitted_submissions_count": 5,
"create_client": true,
"client_type": "client"
}