Getform
getformGetform is a modern form backend platform that enables developers to handle web forms and submissions without setting up a server or writing backend code.
Acciones disponibles (3)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Get Form SubmissionGETFORM_GET_FORM_GET_SUBMISSIONAcciónTool to retrieve a specific submission by its ID. Use when you have both form_id and submission_id and need that single record.
GETFORM_GET_FORM_GET_SUBMISSIONAcciónTool to retrieve a specific submission by its ID. Use when you have both form_id and submission_id and need that single record.
Parámetros de entrada
form_idstringObligatorioIdentifier of the form to retrieve the submission from
submission_idstringObligatorioIdentifier of the submission to retrieve
Parámetros de salida
dataobjectObligatorioDetails of the requested submission
errorstringError if any occurred during the execution of the action
successbooleanObligatorioTrue if the request succeeded
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Form SubmissionsGETFORM_GET_FORM_GET_SUBMISSIONSAcciónTool to retrieve submissions for a specific form. Use when you have a form ID and need paginated, searchable submissions optionally including file URLs.
GETFORM_GET_FORM_GET_SUBMISSIONSAcciónTool to retrieve submissions for a specific form. Use when you have a form ID and need paginated, searchable submissions optionally including file URLs.
Parámetros de entrada
pageintegerPage number to retrieve; starts at 1 if provided
sizeintegerNumber of submissions per page; defaults to 10 if omitted
filesbooleanWhether to include uploaded file URLs in each submission when set to true
querystringFull-text search term to filter submissions
form_idstringObligatorioIdentifier of the form to retrieve submissions for
timezonestringIANA timezone for formatting submission dates (e.g., Europe/Istanbul)
Parámetros de salida
dataobjectObligatorioContainer for submissions and pagination info
errorstringError if any occurred during the execution of the action
successbooleanObligatorioTrue if the request succeeded
successfulbooleanObligatorioWhether or not the action execution was successful or not
Submit FormGETFORM_GET_FORM_SUBMIT_FORMAcciónTool to submit form data and files to a Getform endpoint. Use when you need to post fields, files, optional reCAPTCHA or honeypot to a specific form ID.
GETFORM_GET_FORM_SUBMIT_FORMAcciónTool to submit form data and files to a Getform endpoint. Use when you need to post fields, files, optional reCAPTCHA or honeypot to a specific form ID.
Parámetros de entrada
dataobjectKey/value pairs representing form fields to submit.
filesobject[]Optional list of files to upload; will be posted as multipart/form-data
_gotchastringHoneypot field value; leave empty (spam filter).
form_idstringObligatorioIdentifier of the Getform form endpoint (as in /f/{form_id})
accept_jsonbooleanWhether to set Accept header to application/json for a JSON response instead of redirect
g-recaptcha-responsestringreCAPTCHA token for spam protection (if enabled on the form).
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not