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

# /partialsubmission/{partialSubmissionId}

Get detailed information about 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}": {
      "get": {
        "tags": [
          "PartialSubmissions",
          "Classic"
        ],
        "description": "Get detailed information about a partial submission",
        "operationId": "getPartialSubmissionDetails",
        "parameters": [
          {
            "name": "partialSubmissionId",
            "in": "path",
            "description": "The ID of the partial submission to retrieve",
            "required": true,
            "schema": {
              "type": "integer"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PartialSubmissionDetailedApiDto"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden"
          },
          "404": {
            "description": "Not Found"
          },
          "500": {
            "description": "Internal Server Error"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "PartialSubmissionDataAddressValueApiDto": {
        "title": "Partial Submission Data Address Value",
        "description": "Partial submission data address value response",
        "properties": {
          "address": {
            "description": "First part of the address",
            "type": "string",
            "nullable": true
          },
          "address2": {
            "description": "Second part of the address",
            "type": "string",
            "nullable": true
          },
          "city": {
            "description": "City of the address",
            "type": "string",
            "nullable": true
          },
          "country": {
            "description": "Country of the address",
            "type": "string",
            "nullable": true
          },
          "state": {
            "description": "State of the address",
            "type": "string",
            "nullable": true
          },
          "zip": {
            "description": "Zip of the address",
            "type": "string",
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataCheckboxValueApiDto": {
        "title": "Partial Submission Data Checkbox Value",
        "description": "Partial submission data checkbox value response",
        "properties": {
          "values": {
            "description": "Values of the checkbox",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataDatetimeValueApiDto": {
        "title": "Partial Submission Data Datetime Value",
        "description": "Partial submission data datetime value response",
        "properties": {
          "values": {
            "description": "Values of the datetime",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataMatrixValueApiDto": {
        "title": "Partial Submission Data Matrix Value",
        "description": "Partial submission data matrix value response",
        "properties": {
          "values": {
            "description": "Values of the matrix",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": false
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataNameValueApiDto": {
        "title": "Partial Submission Data Name Value",
        "description": "Partial submission data name value response",
        "properties": {
          "prefix": {
            "description": "Prefix of the name",
            "type": "string",
            "nullable": true
          },
          "first": {
            "description": "First name of the name",
            "type": "string",
            "nullable": true
          },
          "initial": {
            "description": "Initial of the name",
            "type": "string",
            "nullable": true
          },
          "middle": {
            "description": "Middle of the name",
            "type": "string",
            "nullable": true
          },
          "last": {
            "description": "Last name of the name",
            "type": "string",
            "nullable": true
          },
          "suffix": {
            "description": "Suffix of the name",
            "type": "string",
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataProductValueApiDto": {
        "title": "Partial Submission Data Product Value",
        "description": "Partial submission data product value response",
        "properties": {
          "chargeType": {
            "description": "ChargeType of the product",
            "type": "string",
            "nullable": true
          },
          "quantity": {
            "description": "Quantity of the product",
            "type": "string",
            "nullable": true
          },
          "total": {
            "description": "Total of the product",
            "type": "string",
            "nullable": true
          },
          "unitPrice": {
            "description": "UnitPrice of the product",
            "type": "string",
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataRadioValueApiDto": {
        "title": "Partial Submission Data Radio Value",
        "description": "Partial submission data radio value response",
        "properties": {
          "values": {
            "description": "Values of the radio",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataSelectValueApiDto": {
        "title": "Partial Submission Data Select Value",
        "description": "Partial submission data select value response",
        "properties": {
          "values": {
            "description": "Values of the select",
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          }
        },
        "type": "object"
      },
      "PartialSubmissionDataApiDto": {
        "title": "Partial Submission Data",
        "description": "Partial submission data response",
        "properties": {
          "field": {
            "description": "Field of the partial submission",
            "type": "string",
            "nullable": false
          },
          "displayValue": {
            "description": "Display value of the related field in the partial submission",
            "type": "string",
            "nullable": true
          },
          "parsedValue": {
            "description": "Parsed value of the related field in the partial submission",
            "nullable": true,
            "oneOf": [
              {
                "$ref": "#/components/schemas/PartialSubmissionDataNameValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataAddressValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataDatetimeValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataProductValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataCheckboxValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataRadioValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataMatrixValueApiDto"
              },
              {
                "$ref": "#/components/schemas/PartialSubmissionDataSelectValueApiDto"
              }
            ]
          }
        },
        "type": "object"
      },
      "PartialSubmissionDetailedApiDto": {
        "title": "PartialSubmission Detailed",
        "description": "Partial submission detailed response",
        "properties": {
          "id": {
            "description": "ID of the partial submission",
            "type": "integer",
            "nullable": false
          },
          "timestamp": {
            "description": "Timestamp of the partial submission",
            "type": "string",
            "nullable": true
          },
          "userAgent": {
            "description": "User agent of the partial submission",
            "type": "string",
            "nullable": true
          },
          "remoteAddr": {
            "description": "Remote address of the partial submission",
            "type": "string",
            "nullable": true
          },
          "formId": {
            "description": "ID of the partial submission form",
            "type": "integer",
            "nullable": true
          },
          "latitude": {
            "description": "Latitude of the partial submission",
            "type": "string",
            "nullable": true
          },
          "longitude": {
            "description": "Longitude of the partial submission",
            "type": "string",
            "nullable": true
          },
          "prettyFieldId": {
            "description": "ID of the partial submission pretty field",
            "type": "integer",
            "nullable": true
          },
          "prettyName": {
            "description": "Pretty name of the partial submission",
            "type": "string",
            "nullable": true
          },
          "data": {
            "description": "Data of the partial submission",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PartialSubmissionDataApiDto"
            },
            "nullable": true
          }
        },
        "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"
    }
  ]
}
```