get_form_submission
Retrieve detailed information for a specific form submission by providing the form ID and submission ID using the Model Context Protocol server.
Instructions
Get details of a specific form submission
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formId | Yes | The ID of the form | |
submissionId | Yes | The ID of the submission |
Input Schema (JSON Schema)
{
"properties": {
"formId": {
"description": "The ID of the form",
"type": "string"
},
"submissionId": {
"description": "The ID of the submission",
"type": "string"
}
},
"required": [
"formId",
"submissionId"
],
"type": "object"
}