Tally
tallyTally is a form-building platform that allows users to create forms, collect responses, and integrate with various tools and services.
Acciones disponibles (16)
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.
Create FormTALLY_CREATE_FORMAcciónTool to create a new form. use after preparing block definitions and optional settings.
TALLY_CREATE_FORMAcciónTool to create a new form. use after preparing block definitions and optional settings.
Parámetros de entrada
blocksobject[]Ordered list of blocks defining the form content.
statusstringenumForm status: BLANK or PUBLISHED.
BLANKPUBLISHEDsettingsobjectOptional form appearance and behavior settings.
templateIdstringTemplate ID to base the form on.
workspaceIdstringWorkspace ID to create the form under.
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
Create WebhookTALLY_CREATE_WEBHOOKAcciónTool to create a new webhook for a form. use after confirming you have the form id and the callback url.
TALLY_CREATE_WEBHOOKAcciónTool to create a new webhook for a form. use after confirming you have the form id and the callback url.
Parámetros de entrada
urlstringObligatoriouriCallback endpoint URL for webhook notifications.
formIdstringObligatorioID of the form to associate with the webhook.
eventTypesstring[]List of event types that trigger the webhook. Currently only 'FORM_RESPONSE' is supported.
httpHeadersobject[]Optional list of custom HTTP headers to send with each webhook call.
signingSecretstringOptional secret used to sign payloads for verification.
externalSubscriberstringOptional external identifier for the subscriber.
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
Delete FormTALLY_DELETE_FORMAcciónTool to delete a specific form identified by its id. use after confirming the form should be permanently removed.
TALLY_DELETE_FORMAcciónTool to delete a specific form identified by its id. use after confirming the form should be permanently removed.
Parámetros de entrada
formIdstringObligatorioThe unique identifier of the form to delete.
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
Delete WebhookTALLY_DELETE_WEBHOOKAcciónTool to delete a specific webhook. use after confirming the webhook id.
TALLY_DELETE_WEBHOOKAcciónTool to delete a specific webhook. use after confirming the webhook id.
Parámetros de entrada
webhookIdstringObligatorioUnique identifier of the webhook to delete
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
Get Form DetailsTALLY_GET_FORM_DETAILSAcciónTool to retrieve details of a specific form. use when you need comprehensive form metadata by id. use after confirming the form id to fetch its full configuration, blocks, and stats.
TALLY_GET_FORM_DETAILSAcciónTool to retrieve details of a specific form. use when you need comprehensive form metadata by id. use after confirming the form id to fetch its full configuration, blocks, and stats.
Parámetros de entrada
formIdstringObligatorioThe unique identifier of the form to retrieve details for.
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
Get Form FieldsTALLY_GET_FORM_FIELDSAcciónTool to retrieve the fields of a specific form. use when you need the form's field definitions after obtaining its id.
TALLY_GET_FORM_FIELDSAcciónTool to retrieve the fields of a specific form. use when you need the form's field definitions after obtaining its id.
Parámetros de entrada
formIdstringObligatorioUnique identifier of the form to retrieve fields for.
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
Get Form ResponsesTALLY_GET_FORM_RESPONSESAcciónTool to retrieve the responses of a specific form. use after confirming the form id and when paginated data is needed.
TALLY_GET_FORM_RESPONSESAcciónTool to retrieve the responses of a specific form. use after confirming the form id and when paginated data is needed.
Parámetros de entrada
pageintegerPage number for pagination (>=1).
limitintegerNumber of submissions per page (>=1).
formIdstringObligatorioThe unique identifier of the form to retrieve responses for.
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
Get Form SettingsTALLY_GET_FORM_SETTINGSAcciónTool to retrieve the settings of a specific form. use after confirming the form id. example: "get settings for form abc123."
TALLY_GET_FORM_SETTINGSAcciónTool to retrieve the settings of a specific form. use after confirming the form id. example: "get settings for form abc123."
Parámetros de entrada
formIdstringObligatorioThe unique identifier of the form to retrieve settings for.
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
Get User InfoTALLY_GET_USER_INFOAcciónTool to retrieve information about the authenticated user. use when you need to confirm account details before proceeding.
TALLY_GET_USER_INFOAcciónTool to retrieve information about the authenticated user. use when you need to confirm account details before proceeding.
Parámetros de entrada
Sin parámetros.
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
Get Webhook EventsTALLY_GET_WEBHOOK_EVENTSAcciónTool to list events associated with a specific webhook. use when you need to inspect delivery history after creating or listing a webhook.
TALLY_GET_WEBHOOK_EVENTSAcciónTool to list events associated with a specific webhook. use when you need to inspect delivery history after creating or listing a webhook.
Parámetros de entrada
pageintegerPage number for pagination, must be >= 1
webhookIdstringObligatorioUnique identifier of the webhook to list events for
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
List FormsTALLY_LIST_FORMSAcciónTool to retrieve a paginated list of forms. use when you need to list all forms accessible to the authenticated user.
TALLY_LIST_FORMSAcciónTool to retrieve a paginated list of forms. use when you need to list all forms accessible to the authenticated user.
Parámetros de entrada
pageintegerPage number for pagination (>=1).
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
List SubmissionsTALLY_LIST_SUBMISSIONSAcciónTool to list submissions for a specific form. use when you need to paginate through form submissions.
TALLY_LIST_SUBMISSIONSAcciónTool to list submissions for a specific form. use when you need to paginate through form submissions.
Parámetros de entrada
pageintegerPage number for pagination (>=1).
formIdstringObligatorioThe unique identifier of the form to list submissions for.
pageSizeintegerNumber of submissions per page (>=1).
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
List WebhooksTALLY_LIST_WEBHOOKSAcciónTool to retrieve a paginated list of configured webhooks. use when you need a full listing of webhooks across your accessible forms and workspaces.
TALLY_LIST_WEBHOOKSAcciónTool to retrieve a paginated list of configured webhooks. use when you need a full listing of webhooks across your accessible forms and workspaces.
Parámetros de entrada
pageintegerPage number for pagination (>=1).
limitintegerNumber of webhooks per page (1-100).
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
List WorkspacesTALLY_LIST_WORKSPACESAcciónTool to retrieve a paginated list of workspaces. use when you need to browse workspaces accessible to the authenticated user.
TALLY_LIST_WORKSPACESAcciónTool to retrieve a paginated list of workspaces. use when you need to browse workspaces accessible to the authenticated user.
Parámetros de entrada
pageintegerPage number for pagination (>=1).
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
Update FormTALLY_UPDATE_FORMAcciónTool to update form details. use after confirming the form exists and obtaining its id.
TALLY_UPDATE_FORMAcciónTool to update form details. use after confirming the form exists and obtaining its id.
Parámetros de entrada
namestringNew name for the form.
blocksobject[]Updated ordered list of blocks defining the form content.
formIdstringObligatorioThe unique identifier of the form to update.
statusstringenumNew status of the form.
BLANKPUBLISHEDsettingsobjectOptional appearance and behavior settings for a 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
Update WorkspaceTALLY_UPDATE_WORKSPACEAcciónTool to update the details of a specific workspace identified by its id. use when you need to rename a workspace after confirming the workspace id.
TALLY_UPDATE_WORKSPACEAcciónTool to update the details of a specific workspace identified by its id. use when you need to rename a workspace after confirming the workspace id.
Parámetros de entrada
namestringThe new name for the workspace.
workspaceIdstringObligatorioThe unique identifier of the workspace to update.
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