Formcarry integration (Marketing, Productivity). Imported from open-connector.
https://formcarry.com/api/form
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | Name of the form. |
| string | required | Comma-separated email addresses that should receive submission notifications. | |
| returnUrl | string | optional | URL to redirect users to after a successful submission when not using the built… |
| failUrl | string | optional | URL to redirect users to after a failed submission when returnUrl is configured. |
| returnParams | boolean | optional | Whether Formcarry should append submission data to the returnUrl query string. |
| googleRecaptcha | string | optional | Google reCAPTCHA secret key used to enable spam protection for the form. |
| webhook | string | optional | Webhook URL that Formcarry should call with a POST request for each submission. |
| retention | boolean | optional | Whether Formcarry should save incoming submissions to its database. |
/api/form/{form_id}
| Param | Type | Required | Description |
|---|---|---|---|
| form_id | string | required | Formcarry form ID to delete. |
/api/form/{form_id}/submissions
| Param | Type | Required | Description |
|---|---|---|---|
| form_id | string | required | Formcarry form ID whose submissions should be retrieved. |
| limit | integer | optional | Maximum number of submissions to return. Formcarry documents a maximum of 50. |
| page | integer | optional | Page number to retrieve. |
| sort | string | optional | Sorting criteria in the format field:order, such as createdAt:-1 or createdAt:1. |
| filter | string | optional | Comma-separated filter expressions in the format key:value, including documente… |