# /partialsubmission/{partialSubmissionId}

Delete a partial submission

# OpenAPI definition

```json
{
  "openapi": "3.0.0",
  "info": {
    "title": "Formstack API v2025.0",
    "version": "0.0.4"
  },
  "servers": [
    {
      "url": "https://www.formstack.com/api/v2025",
      "description": "Production server"
    },
    {
      "url": "https://staging-formstack.com/api/v2025",
      "description": "Staging server"
    },
    {
      "url": "https://dev-formstack.com/api/v2025",
      "description": "Development server"
    }
  ],
  "paths": {
    "/partialsubmission/{partialSubmissionId}": {
      "delete": {
        "tags": [
          "PartialSubmissions",
          "Classic"
        ],
        "description": "Delete a partial submission",
        "operationId": "deletePartialSubmission",
        "parameters": [
          {
            "name": "partialSubmissionId",
            "in": "path",
            "description": "The ID of the partial submission to delete",
            "required": true,
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PartialSubmissionIdApiDto"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden"
          },
          "404": {
            "description": "Not Found"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "PartialSubmissionIdApiDto": {
        "title": "PartialSubmission Id",
        "description": "Partial submission ID response",
        "properties": {
          "id": {
            "description": "ID of the partial submission",
            "type": "integer",
            "nullable": false
          }
        },
        "type": "object"
      }
    }
  },
  "tags": [
    {
      "name": "PartialSubmissions",
      "description": "Partial submissions capture form data that a respondent entered but did not finish submitting (Save & Resume / abandoned entries). Use these endpoints to list and search a form's partial submissions, retrieve the details of one, and delete partial submissions."
    },
    {
      "name": "Classic",
      "description": "Classic"
    }
  ]
}
```