> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # DeleteForm # Package: forms # Namespace: FormSchemaService # Method link: https://dev.wix.com/docs/api-reference/crm/forms/form-schemas/delete-form.md ## Permission Scopes: Manage Challenges: SCOPE.CHALLENGES.MANAGE ## Introduction Deletes a form schema. The schema is moved to the trash bin where it's stored for 90 days before permanent deletion. When permanently deleted, all associated form submissions are also deleted. --- ## REST API ### Schema ``` Method: deleteForm Description: Deletes a form schema. The schema is moved to the trash bin where it's stored for 90 days before permanent deletion. When permanently deleted, all associated form submissions are also deleted. URL: https://www.wixapis.com/v4/forms/{formId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: formId Method parameters: param name: formId | type: none | required: true query param name: permanent | type: permanent | description: Whether to permanently delete the form schema, bypassing the trash bin. Default: `false` Return type: DeleteFormResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Form Deletes form. If permanent is set to false, form is stored in trash-bin for 90 days ```curl curl -X DELETE \ 'https://www.wixapis.com/form-schema-service/v4/forms/76d01133-44df-490e-810f-c10e30f330a1' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' -d '{ "permanent": false }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.forms.FormSchemaService.deleteForm(formId, options) Description: Deletes a form schema. The schema is moved to the trash bin where it's stored for 90 days before permanent deletion. When permanently deleted, all associated form submissions are also deleted. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: formId Method parameters: param name: formId | type: string | description: GUID of the form schema to delete. | required: true param name: options | type: DeleteFormOptions none - name: permanent | type: boolean | description: Whether to permanently delete the form schema, bypassing the trash bin. Default: `false` Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteForm ```javascript import { forms } from '@wix/forms'; async function deleteForm(formId,options) { const response = await forms.deleteForm(formId,options); }; ``` ### deleteForm (with elevated permissions) ```javascript import { forms } from '@wix/forms'; import { auth } from '@wix/essentials'; async function myDeleteFormMethod(formId,options) { const elevatedDeleteForm = auth.elevate(forms.deleteForm); const response = await elevatedDeleteForm(formId,options); } ``` ### deleteForm (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { forms } from '@wix/forms'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { forms }, // Include the auth strategy and host as relevant }); async function deleteForm(formId,options) { const response = await myWixClient.forms.deleteForm(formId,options); }; ``` ---