← Tools Reference

Formcarry

Formcarry integration (Marketing, Productivity). Imported from open-connector.

API key3 toolshttps://formcarry.com
PUT
formcarry_create_form
Create a new Formcarry form with basic notification, redirect, and storage settings.

/api/form

8 parameters
ParamTypeRequiredDescription
namestringrequiredName of the form.
emailstringrequiredComma-separated email addresses that should receive submission notifications.
returnUrlstringoptionalURL to redirect users to after a successful submission when not using the built…
failUrlstringoptionalURL to redirect users to after a failed submission when returnUrl is configured.
returnParamsbooleanoptionalWhether Formcarry should append submission data to the returnUrl query string.
googleRecaptchastringoptionalGoogle reCAPTCHA secret key used to enable spam protection for the form.
webhookstringoptionalWebhook URL that Formcarry should call with a POST request for each submission.
retentionbooleanoptionalWhether Formcarry should save incoming submissions to its database.
DELETE
formcarry_delete_form
Delete an existing Formcarry form by ID.

/api/form/{form_id}

1 parameter
ParamTypeRequiredDescription
form_idstringrequiredFormcarry form ID to delete.
GET
formcarry_list_submissions
List submissions for a Formcarry form with the documented pagination, sorting, and filtering query parameters.

/api/form/{form_id}/submissions

5 parameters
ParamTypeRequiredDescription
form_idstringrequiredFormcarry form ID whose submissions should be retrieved.
limitintegeroptionalMaximum number of submissions to return. Formcarry documents a maximum of 50.
pageintegeroptionalPage number to retrieve.
sortstringoptionalSorting criteria in the format field:order, such as createdAt:-1 or createdAt:1.
filterstringoptionalComma-separated filter expressions in the format key:value, including documente…