> ## Documentation Index
> Fetch the complete documentation index at: https://docs.feedspace.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Review Form

> Permanently deletes a review form by its `unique_form_id`.

**Reviews already collected through this form are not deleted.** They stay in your Feedbox and remain on any Wall of Love page or widget that already includes them.

The form's public page stops resolving as soon as the form is deleted. Deleting a form cannot be undone through the API.

If the form is embedded on your site, remove the embed code separately: deleting the form does not remove it from your pages.



## OpenAPI

````yaml DELETE /forms/{unique_form_id}
openapi: 3.1.0
info:
  title: Feedspace API
  description: Feedspace API v3 - Feedback and testimonial management platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.feedspace.io/v3
security: []
paths:
  /forms/{unique_form_id}:
    delete:
      tags:
        - ReviewForms
      summary: Delete a review form
      description: >-
        Permanently deletes a review form by its `unique_form_id`.


        **Reviews already collected through this form are not deleted.** They
        stay in your Feedbox and remain on any Wall of Love page or widget that
        already includes them.


        The form's public page stops resolving as soon as the form is deleted.
        Deleting a form cannot be undone through the API.


        If the form is embedded on your site, remove the embed code separately:
        deleting the form does not remove it from your pages.
      operationId: deleteReviewForm
      parameters:
        - name: unique_form_id
          in: path
          required: true
          description: >-
            The form's unique string identifier, as returned in the
            `unique_form_id` field of `GET /forms`. Note this is **not** the
            numeric `id` field, and **not** the `feed_form_id` field found
            inside `questions[]`.
          schema:
            type: string
            example: form_f5Uc9agvcXRKgPdDrVCIZYc1
      responses:
        '200':
          description: >-
            Review form deleted successfully. Reviews collected through it are
            retained.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
              examples:
                success:
                  value:
                    message: Review Form Deleted Successfully
      security:
        - basicAuth: []
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        HTTP Basic Authentication using API Key and Secret Key. The credentials
        should be Base64 encoded in the format 'api_key:secret_key'. You can
        obtain your API Key and Secret Key from Feedspace → Automation → API
        (https://app.feedspace.io/automation/api).

````