Byteforms
byteformsAll-in-one solution for form creation, submission management, and data integration.
Acciones disponibles (5)
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 formBYTEFORMS_CREATE_FORMAcciónTool to create a new form. use when you need to define and store a form structure.
BYTEFORMS_CREATE_FORMAcciónTool to create a new form. use when you need to define and store a form structure.
Parámetros de entrada
bodyobject[]ObligatorioArray of form components defining the form body
namestringObligatorioName of the form
optionsobjectOptional settings for form behavior
Parámetros de salida
dataobjectObligatorioCreated form object
errorstringError if any occurred during the execution of the action
statusstringObligatorioenumAPI response status
successfailsuccessfulbooleanObligatorioWhether or not the action execution was successful or not
Delete FormBYTEFORMS_DELETE_FORMAcciónTool to delete a form by its id. use when you need to remove an existing form permanently.
BYTEFORMS_DELETE_FORMAcciónTool to delete a form by its id. use when you need to remove an existing form permanently.
Parámetros de entrada
form_idstringObligatorioThe unique identifier of the form to delete
Parámetros de salida
datanullNull payload for delete operation
errorstringError if any occurred during the execution of the action
statusstringObligatorioResponse status
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get all formsBYTEFORMS_GET_ALL_FORMSAcciónTool to fetch all forms created by the authenticated user. use after authentication to list existing forms.
BYTEFORMS_GET_ALL_FORMSAcciónTool to fetch all forms created by the authenticated user. use after authentication to list existing forms.
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobject[]ObligatorioList of forms
errorstringError if any occurred during the execution of the action
statusstringObligatorioenumResponse status
successfailsuccessfulbooleanObligatorioWhether or not the action execution was successful or not
Get Form By IDBYTEFORMS_GET_FORM_BY_IDAcciónTool to retrieve a specific form using its id. use when you need to fetch form details by providing the form's unique identifier.
BYTEFORMS_GET_FORM_BY_IDAcciónTool to retrieve a specific form using its id. use when you need to fetch form details by providing the form's unique identifier.
Parámetros de entrada
form_idstringObligatorioThe unique identifier of the form to retrieve
Parámetros de salida
dataobjectObligatorioRequested form item
errorstringError if any occurred during the execution of the action
statusstringObligatorioResponse status
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get Form ResponsesBYTEFORMS_GET_FORM_RESPONSESAcciónTool to retrieve responses for a specific form with optional pagination and filtering. use when the form has collected submissions and you need to navigate large result sets.
BYTEFORMS_GET_FORM_RESPONSESAcciónTool to retrieve responses for a specific form with optional pagination and filtering. use when the form has collected submissions and you need to navigate large result sets.
Parámetros de entrada
afterstringCursor for pagination — returns items after this cursor
limitintegerMaximum number of responses to return, must be ≥1
orderstringenumSort order for responses by creation time
ascdescquerystringFilter responses containing this string
beforestringCursor for pagination — returns items before this cursor
formIdstringObligatorioID of the form to retrieve responses for
Parámetros de salida
dataobject[]ObligatorioList of fetched response items
countintegerObligatorioTotal number of matching responses
errorstringError if any occurred during the execution of the action
cursorobjectObligatorioPagination cursors for next/previous pages
statusstringObligatorioAPI call status, usually 'success'
successfulbooleanObligatorioWhether or not the action execution was successful or not