Formbricks
formbricksFormbricks is an open-source platform for building and managing surveys, enabling organizations to collect and analyze user feedback effectively.
Acciones disponibles (31)
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 Action ClassFORMBRICKS_CREATE_ACTION_CLASSAcciónTool to create a new action class. Use when defining custom action logic in your environment.
FORMBRICKS_CREATE_ACTION_CLASSAcciónTool to create a new action class. Use when defining custom action logic in your environment.
Parámetros de entrada
keystringObligatorioUnique key identifier for the Action Class
namestringObligatorioName of the Action Class
typestringObligatorioenumType of the Action Class, either 'code' or 'noCode'
codenoCodedescriptionstringOptional description of the Action Class
noCodeConfigobjectOptional configuration for no-code action type
environmentIdstringObligatorioEnvironment ID where this action class belongs
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 Attribute ClassFORMBRICKS_CREATE_ATTRIBUTE_CLASSAcciónTool to create an attribute class in Formbricks. Use when you need to define new attribute classes for segmentation or attributes management.
FORMBRICKS_CREATE_ATTRIBUTE_CLASSAcciónTool to create an attribute class in Formbricks. Use when you need to define new attribute classes for segmentation or attributes management.
Parámetros de entrada
keystringObligatorioUnique key for the attribute class
namestringDisplay name for the attribute class
typestringType of attribute class; must be 'custom' for user-defined
isUniquebooleanWhether the attribute value must be unique
descriptionstringOptional description
environmentIdstringObligatorioEnvironment ID where this attribute belongs
Parámetros de salida
dataobjectObligatorioCreated attribute class data
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create ContactFORMBRICKS_CREATE_CONTACTAcciónTool to create a new contact. Use when you need to register a contact in a Formbricks environment.
FORMBRICKS_CREATE_CONTACTAcciónTool to create a new contact. Use when you need to register a contact in a Formbricks environment.
Parámetros de entrada
attributesobjectObligatorioKey/value attributes for the contact; must include 'email' and all keys must exist in the environment.
environmentIdstringObligatorioEnvironment ID to create the contact in.
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 DisplayFORMBRICKS_CREATE_DISPLAYAcciónTool to mark a survey as displayed or link it to a response. Use after obtaining the survey and environment IDs to register a display instance.
FORMBRICKS_CREATE_DISPLAYAcciónTool to mark a survey as displayed or link it to a response. Use after obtaining the survey and environment IDs to register a display instance.
Parámetros de entrada
userIdstring(Optional) User ID to link the display to.
surveyIdstringObligatorioSurvey ID to create the display for.
environmentIdstringObligatorioThe ID of the environment.
Parámetros de salida
dataobjectObligatorioResponse wrapper containing display information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create Survey ResponseFORMBRICKS_CREATE_RESPONSEAcciónTool to create a response for a survey. Use after collecting all survey answers.
FORMBRICKS_CREATE_RESPONSEAcciónTool to create a response for a survey. Use after collecting all survey answers.
Parámetros de entrada
ttcobject(Optional) Time-to-complete metrics
dataobjectObligatorioThe answers/data for the survey response
metaobject(Optional) Metadata about the response, e.g., source, url, userAgent, country
endingIdstring(Optional) ID of the ending reached
finishedbooleanObligatorioWhether the response is finished
languagestring(Optional) Language code of the response, e.g., 'en'
surveyIdstringObligatorioThe ID of the survey for which to create the response
createdAtstring(Optional) Creation timestamp in ISO 8601 format
displayIdstring(Optional) Display ID for the response
updatedAtstring(Optional) Last update timestamp in ISO 8601 format
variablesobject(Optional) Custom variables associated with the response
singleUseIdstring(Optional) Single-use ID for the response
Parámetros de salida
idstringObligatorioThe ID of the created response
ttcobject(Optional) Time-to-complete metrics
dataobjectObligatorioThe answers/data for the survey response
metaobject(Optional) Metadata about the response
errorstringError if any occurred during the execution of the action
endingIdstring(Optional) Ending ID reached
finishedbooleanObligatorioWhether the response is finished
languagestring(Optional) Language code of the response
surveyIdstringObligatorioThe survey ID associated with the response
contactIdstring(Optional) Contact ID if linked
createdAtstringObligatorioCreation timestamp of the response
displayIdstring(Optional) Display ID for the response
updatedAtstringObligatorioLast update timestamp of the response
variablesobject(Optional) Custom variables associated with the response
successfulbooleanObligatorioWhether or not the action execution was successful or not
singleUseIdstring(Optional) Single-use ID for the response
contactAttributesobject(Optional) Attributes of the contact
Create SurveyFORMBRICKS_CREATE_SURVEYAcciónTool to create a new survey. Use after defining survey details and questions.
FORMBRICKS_CREATE_SURVEYAcciónTool to create a new survey. Use after defining survey details and questions.
Parámetros de entrada
namestringObligatorioSurvey name
typestringObligatorioenumSurvey display type
linkappquestionsobject[]ObligatorioList of questions in the survey
environmentIdstringObligatorioEnvironment ID to create the survey in
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 WebhookFORMBRICKS_CREATE_WEBHOOKAcciónTool to create a new webhook. Use when you need to register an external endpoint to receive form response events.
FORMBRICKS_CREATE_WEBHOOKAcciónTool to create a new webhook. Use when you need to register an external endpoint to receive form response events.
Parámetros de entrada
urlstringObligatorioTarget URL for the webhook; must be a valid URI.
namestringObligatorioName of the webhook.
sourcestringObligatorioenumSource of the webhook; one of 'user', 'zapier', 'make', 'n8n'.
userzapiermaken8ntriggersstring[]ObligatorioList of events that will fire the webhook; allowed values: responseCreated, responseUpdated, responseFinished
surveyIdsstring[]ObligatorioList of survey IDs the webhook listens to.
environmentIdstringObligatorioID of the associated environment.
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 Attribute ClassFORMBRICKS_DELETE_ATTRIBUTE_CLASSAcciónTool to delete an attribute class. Use when you need to remove an attribute class by its ID after confirming it's no longer needed.
FORMBRICKS_DELETE_ATTRIBUTE_CLASSAcciónTool to delete an attribute class. Use when you need to remove an attribute class by its ID after confirming it's no longer needed.
Parámetros de entrada
idstringObligatorioID of the attribute class to delete.
Parámetros de salida
dataobjectObligatorioDeleted attribute class object.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete PersonFORMBRICKS_DELETE_PERSONAcciónTool to delete a person. Use when you need to remove a person's record from Formbricks after confirming the ID.
FORMBRICKS_DELETE_PERSONAcciónTool to delete a person. Use when you need to remove a person's record from Formbricks after confirming the ID.
Parámetros de entrada
personIdstringObligatorioID of the person to delete.
Parámetros de salida
dataobjectObligatorioData returned when a person is successfully deleted.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete Survey ResponseFORMBRICKS_DELETE_RESPONSEAcciónTool to delete a survey response by its ID. Use when you need to remove an existing response after confirming its ID.
FORMBRICKS_DELETE_RESPONSEAcciónTool to delete a survey response by its ID. Use when you need to remove an existing response after confirming its ID.
Parámetros de entrada
idstringObligatorioUnique identifier of the response to delete
Parámetros de salida
idstringObligatorioID of the deleted response
ttcobjectObligatorioTime-to-complete metrics per question
dataobjectObligatorioAnswers/data keyed by question ID
metaobjectObligatorioMetadata about the response
tagsstring[]ObligatorioList of tags attached to the response
errorstringError if any occurred during the execution of the action
personobjectObligatorioPerson details associated with the response
finishedbooleanObligatorioWhether the response was completed
languagestringLanguage code of the response
surveyIdstringObligatorioThe survey ID associated with the response
createdAtstringObligatorioCreation timestamp of the response (ISO 8601)
updatedAtstringObligatorioLast update timestamp of the response (ISO 8601)
successfulbooleanObligatorioWhether or not the action execution was successful or not
singleUseIdstringSingle-use link ID, if any
personAttributesobjectObligatorioFlattened person attributes
Delete SurveyFORMBRICKS_DELETE_SURVEYAcciónTool to delete a survey by its ID. Use when you need to remove a survey after confirming its ID.
FORMBRICKS_DELETE_SURVEYAcciónTool to delete a survey by its ID. Use when you need to remove a survey after confirming its ID.
Parámetros de entrada
idstringObligatorioThe ID of the survey 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 TeamFORMBRICKS_DELETE_TEAMAcciónTool to delete a team. Use when you need to remove a team by its ID after confirming it's no longer needed.
FORMBRICKS_DELETE_TEAMAcciónTool to delete a team. Use when you need to remove a team by its ID after confirming it's no longer needed.
Parámetros de entrada
team_idstringObligatorioID of the team to delete.
organization_idstringObligatorioID of the organization.
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 WebhookFORMBRICKS_DELETE_WEBHOOKAcciónTool to delete a webhook by ID. Use when you need to remove an existing webhook from Formbricks. Use after confirming the webhook ID.
FORMBRICKS_DELETE_WEBHOOKAcciónTool to delete a webhook by ID. Use when you need to remove an existing webhook from Formbricks. Use after confirming the webhook ID.
Parámetros de entrada
idstringObligatorioThe ID 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 Account InfoFORMBRICKS_GET_ACCOUNT_INFOAcciónTool to retrieve account information. Use when you need details about the authenticated Formbricks account.
FORMBRICKS_GET_ACCOUNT_INFOAcciónTool to retrieve account information. Use when you need details about the authenticated Formbricks account.
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 All ContactsFORMBRICKS_GET_ALL_CONTACTSAcciónTool to retrieve all contacts within the organization. Use when you need a complete list of contacts.
FORMBRICKS_GET_ALL_CONTACTSAcciónTool to retrieve all contacts within the organization. Use when you need a complete list of contacts.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of contact objects
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get MeFORMBRICKS_GET_MEAcciónTool to retrieve current authenticated organization's and environment details. Use when you need to fetch organization and environment information for the current API key.
FORMBRICKS_GET_MEAcciónTool to retrieve current authenticated organization's and environment details. Use when you need to fetch organization and environment information for the current API key.
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 ResponsesFORMBRICKS_GET_RESPONSESAcciónTool to retrieve a list of survey responses. Use when you need to page, sort, or filter responses.
FORMBRICKS_GET_RESPONSESAcciónTool to retrieve a list of survey responses. Use when you need to page, sort, or filter responses.
Parámetros de entrada
skipintegerNumber of items to skip for pagination
limitintegerNumber of items to return (1-250)
orderstringenumSort order: 'asc' (ascending) or 'desc' (descending)
ascdescsortBystringenumField to sort by: 'createdAt' or 'updatedAt'
createdAtupdatedAtendDatestringISO 8601 end date to filter responses (inclusive)
surveyIdstringFilter responses by survey ID
contactIdstringFilter responses by contact ID
startDatestringISO 8601 start date to filter responses (inclusive)
Parámetros de salida
dataobject[]ObligatorioList of response objects
metaobjectObligatorioPagination metadata
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get RolesFORMBRICKS_GET_ROLESAcciónTool to retrieve all available roles in the system. Use when you need system roles for access control.
FORMBRICKS_GET_ROLESAcciónTool to retrieve all available roles in the system. Use when you need system roles for access control.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
datastring[]ObligatorioList of available role names
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get UsersFORMBRICKS_GET_USERSAcciónTool to retrieve a list of users within the environment using the Management API.
FORMBRICKS_GET_USERSAcciónTool to retrieve a list of users within the environment using the Management API.
Parámetros de entrada
skipintegerNumber of users to skip (offset).
limitintegerMaximum number of users to return per page; between 1 and 250.
organizationIdstringIdentifier of the organization (ignored on Cloud).
Parámetros de salida
dataobject[]ObligatorioArray of user/person objects.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get WebhookFORMBRICKS_GET_WEBHOOKAcciónTool to retrieve details of a specific webhook. Use when you need to inspect a webhook's configuration by ID.
FORMBRICKS_GET_WEBHOOKAcciónTool to retrieve details of a specific webhook. Use when you need to inspect a webhook's configuration by ID.
Parámetros de entrada
idstringObligatorioUnique identifier of the webhook to retrieve.
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 Action ClassesFORMBRICKS_LIST_ACTION_CLASSESAcciónTool to list all action classes. Use when you need to inspect available action classes for workflows.
FORMBRICKS_LIST_ACTION_CLASSESAcciónTool to list all action classes. Use when you need to inspect available action classes for workflows.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of action class objects
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List Attribute ClassesFORMBRICKS_LIST_ATTRIBUTE_CLASSESAcciónTool to list all attribute classes. Use when you need to retrieve existing attribute classes for segmentation or management.
FORMBRICKS_LIST_ATTRIBUTE_CLASSESAcciónTool to list all attribute classes. Use when you need to retrieve existing attribute classes for segmentation or management.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of attribute classes
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List SurveysFORMBRICKS_LIST_SURVEYSAcciónTool to list all surveys. Use when you need to retrieve a summary of all surveys available in the environment.
FORMBRICKS_LIST_SURVEYSAcciónTool to list all surveys. Use when you need to retrieve a summary of all surveys available in the environment.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of survey summary objects
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List WebhooksFORMBRICKS_LIST_WEBHOOKSAcciónTool to list all webhooks. Use when you need to retrieve all configured webhooks for the current environment.
FORMBRICKS_LIST_WEBHOOKSAcciónTool to list all webhooks. Use when you need to retrieve all configured webhooks for the current environment.
Parámetros de entrada
skipintegerNumber of items to skip (offset).
limitintegerNumber of items to return (1–250).
orderstringenumSort order.
ascdescsortBystringenumField to sort by.
createdAtupdatedAtendDatestringFilter: end date (ISO 8601).
startDatestringFilter: start date (ISO 8601).
surveyIdsstring[]Filter: list of survey IDs.
Parámetros de salida
dataobject[]ObligatorioList of webhook objects.
metaobjectPagination metadata, present in API v2
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update PersonFORMBRICKS_UPDATE_PERSONAcciónTool to update an existing person. Use when you need to modify contact attributes in a Formbricks environment.
FORMBRICKS_UPDATE_PERSONAcciónTool to update an existing person. Use when you need to modify contact attributes in a Formbricks environment.
Parámetros de entrada
userIdstringObligatorioID of the user/contact (person) to update.
attributesobjectObligatorioKey/value attributes to update for the person; keys must exist in the environment.
environmentIdstringObligatorioEnvironment ID containing the person to update.
Parámetros de salida
dataobjectObligatorioResult data for the update operation.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update Survey ResponseFORMBRICKS_UPDATE_RESPONSEAcciónTool to update an existing survey response. Use after identifying the response to modify.
FORMBRICKS_UPDATE_RESPONSEAcciónTool to update an existing survey response. Use after identifying the response to modify.
Parámetros de entrada
idstringObligatorioUnique identifier of the response to update
ttcobject(Optional) Time-to-complete metrics
dataobjectObligatorioThe answers/data for the survey response
metaobject(Optional) Metadata about the response, e.g., source, url, userAgent, country
endingIdstring(Optional) ID of the ending reached
finishedbooleanObligatorioWhether the response is finished
languagestring(Optional) Language code of the response, e.g., 'en'
surveyIdstringObligatorioThe ID of the survey for which to update the response
contactIdstring(Optional) Contact ID
createdAtstring(Optional) Creation timestamp in ISO 8601 format
displayIdstring(Optional) Display ID for the response
updatedAtstring(Optional) Last update timestamp in ISO 8601 format
variablesobject(Optional) Custom variables associated with the response
singleUseIdstring(Optional) Single-use ID for the response
contactAttributesobject(Optional) Contact attributes snapshot
Parámetros de salida
idstringObligatorioThe ID of the updated response
ttcobject(Optional) Time-to-complete metrics
dataobjectObligatorioThe answers/data for the survey response
metaobject(Optional) Metadata about the response
errorstringError if any occurred during the execution of the action
endingIdstring(Optional) Ending ID reached
finishedbooleanObligatorioWhether the response is finished
languagestring(Optional) Language code of the response
surveyIdstringObligatorioThe survey ID associated with the response
contactIdstring(Optional) Contact ID if linked
createdAtstringObligatorioCreation timestamp of the response
displayIdstring(Optional) Display ID for the response
updatedAtstringObligatorioLast update timestamp of the response
variablesobject(Optional) Custom variables associated with the response
successfulbooleanObligatorioWhether or not the action execution was successful or not
singleUseIdstring(Optional) Single-use ID for the response
contactAttributesobject(Optional) Attributes of the contact
Update SurveyFORMBRICKS_UPDATE_SURVEYAcciónTool to update an existing survey. Use after confirming survey ID to modify its properties.
FORMBRICKS_UPDATE_SURVEYAcciónTool to update an existing survey. Use after confirming survey ID to modify its properties.
Parámetros de entrada
idstringObligatorioThe ID of the survey to update
namestringNew name for the survey
delaynumberDisplay delay in seconds
statusstringNew status for the survey, e.g., 'inProgress'
endingsarrayList of ending screen configurations
triggersarrayList of trigger configurations
languagesstring[]List of language codes for the survey, e.g., ['en','de']
questionsarrayList of question definitions to update
redirectUrlstringURL to redirect after survey completion
welcomeCardobjectWelcome card settings object
displayLimitintegerMaximum display count
hiddenFieldsobjectSettings for hidden fields, e.g., {'enabled': True, 'fieldIds': ['q1','q2']}
displayOptionstringDisplay option, e.g., 'displayOnce'
displayPercentagenumberDisplay percentage threshold
showLanguageSwitchbooleanWhether to show language switch
surveyClosedMessagestringCustom message when survey is closed
isVerifyEmailEnabledbooleanEnable or disable email verification
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 WebhookFORMBRICKS_UPDATE_WEBHOOKAcciónTool to update an existing webhook. Use when you need to apply modifications to a webhook's configuration.
FORMBRICKS_UPDATE_WEBHOOKAcciónTool to update an existing webhook. Use when you need to apply modifications to a webhook's configuration.
Parámetros de entrada
idstringObligatorioThe ID of the webhook to update.
urlstringObligatorioTarget URL for the webhook, must be a valid URI.
namestringObligatorioThe name of the webhook. Provide null to clear existing name.
sourcestringObligatorioSource of the webhook; one of 'user', 'zapier', 'make', 'n8n'.
triggersstring[]ObligatorioList of triggers for the webhook; must include at least one entry.
surveyIdsstring[]ObligatorioList of survey IDs the webhook applies to.
environmentIdstringObligatorioThe ID of the environment associated with the webhook.
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
Upload Bulk ContactsFORMBRICKS_UPLOAD_BULK_CONTACTSAcciónTool to upload multiple contacts in bulk. Use when you need to import up to 250 contacts at once.
FORMBRICKS_UPLOAD_BULK_CONTACTSAcciónTool to upload multiple contacts in bulk. Use when you need to import up to 250 contacts at once.
Parámetros de entrada
contactsobject[]ObligatorioList of contacts to upload (1 to 250 items).
environmentIdstringObligatorioTarget environment ID to upload contacts into.
Parámetros de salida
dataobjectObligatorioResult data for bulk upload operation.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Upload Private FileFORMBRICKS_UPLOAD_PRIVATE_FILEAcciónTool to obtain S3 presigned upload data for a private survey file. Use after confirming environmentId and surveyId.
FORMBRICKS_UPLOAD_PRIVATE_FILEAcciónTool to obtain S3 presigned upload data for a private survey file. Use after confirming environmentId and surveyId.
Parámetros de entrada
fileNamestringObligatorioName of the file to upload (including extension), e.g., 'report.pdf'.
fileTypestringObligatorioMIME type of the file, e.g., 'application/pdf'.
surveyIdstringObligatorioThe ID of the survey associated with the file.
environmentIdstringObligatorioEnvironment ID of the Formbricks instance.
Parámetros de salida
dataobjectObligatorioPresigned upload data object.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Upload Public FileFORMBRICKS_UPLOAD_PUBLIC_FILEAcciónTool to get S3 presigned data for uploading a public file. Use after environment creation to retrieve upload details.
FORMBRICKS_UPLOAD_PUBLIC_FILEAcciónTool to get S3 presigned data for uploading a public file. Use after environment creation to retrieve upload details.
Parámetros de entrada
fileNamestringObligatorioName of the file to be uploaded (including extension)
fileTypestringObligatorioMIME type of the file (e.g., 'image/png')
environmentIdstringObligatorioThe environment ID where the file will be uploaded
allowedFileExtensionsstring[]Optional list of allowed file extensions (without dot). If omitted, default allowed extensions apply.
Parámetros de salida
dataobjectObligatorioData returned containing URLs and form fields for file upload.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not