> ## 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`.

**This also deletes every review collected through the form** — video, audio and text — along with the form's questions and its submission logs. 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.

<Warning>
  Deleting a review form also deletes **every review collected through it** (video, audio and text), together with the form's questions and submission logs. This cannot be undone through the API.

  If the form is embedded on your website, remove the embed code separately. Deleting the form does not remove it from your pages.
</Warning>


## 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`.


        **This also deletes every review collected through the form** — video,
        audio and text — along with the form's questions and its submission
        logs. 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, and all reviews collected through it, deleted
            successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
              examples:
                success:
                  value:
                    message: 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).

````