NAiOS IconNAiOS Logo
Volver al catálogo

Byteforms

byteforms

All-in-one solution for form creation, submission management, and data integration.

Acciones
5
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

Tool to create a new form. use when you need to define and store a form structure.

Parámetros de entrada

  • bodyobject[]Obligatorio

    Array of form components defining the form body

  • namestringObligatorio

    Name of the form

  • optionsobject

    Optional settings for form behavior

Parámetros de salida

  • dataobjectObligatorio

    Created form object

  • errorstring

    Error if any occurred during the execution of the action

  • statusstringObligatorioenum

    API response status

    successfail
  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete FormBYTEFORMS_DELETE_FORMAcción

Tool to delete a form by its id. use when you need to remove an existing form permanently.

Parámetros de entrada

  • form_idstringObligatorio

    The unique identifier of the form to delete

Parámetros de salida

  • datanull

    Null payload for delete operation

  • errorstring

    Error if any occurred during the execution of the action

  • statusstringObligatorio

    Response status

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get all formsBYTEFORMS_GET_ALL_FORMSAcción

Tool 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[]Obligatorio

    List of forms

  • errorstring

    Error if any occurred during the execution of the action

  • statusstringObligatorioenum

    Response status

    successfail
  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Form By IDBYTEFORMS_GET_FORM_BY_IDAcción

Tool 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_idstringObligatorio

    The unique identifier of the form to retrieve

Parámetros de salida

  • dataobjectObligatorio

    Requested form item

  • errorstring

    Error if any occurred during the execution of the action

  • statusstringObligatorio

    Response status

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get Form ResponsesBYTEFORMS_GET_FORM_RESPONSESAcción

Tool 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

  • afterstring

    Cursor for pagination — returns items after this cursor

  • limitinteger

    Maximum number of responses to return, must be ≥1

  • orderstringenum

    Sort order for responses by creation time

    ascdesc
  • querystring

    Filter responses containing this string

  • beforestring

    Cursor for pagination — returns items before this cursor

  • formIdstringObligatorio

    ID of the form to retrieve responses for

Parámetros de salida

  • dataobject[]Obligatorio

    List of fetched response items

  • countintegerObligatorio

    Total number of matching responses

  • errorstring

    Error if any occurred during the execution of the action

  • cursorobjectObligatorio

    Pagination cursors for next/previous pages

  • statusstringObligatorio

    API call status, usually 'success'

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not