Byteforms

Learn how to use Byteforms with Composio

Overview

Enum

BYTEFORMS

Description

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

Authentication Details

api_key
stringRequired

Actions

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

Action Parameters

body
arrayRequired
name
stringRequired
options
object

Action Response

data
object
error
string
status
string
successful
boolean
Tool to delete a form by its id. use when you need to remove an existing form permanently.

Action Parameters

form_id
stringRequired

Action Response

data
null
error
string
status
string
successful
boolean
Tool to fetch all forms created by the authenticated user. use after authentication to list existing forms.

Action Parameters

Action Response

data
array
error
string
status
string
successful
boolean
Tool to retrieve a specific form using its id. use when you need to fetch form details by providing the form's unique identifier.

Action Parameters

form_id
stringRequired

Action Response

data
object
error
string
status
string
successful
boolean
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.

Action Parameters

after
string
before
string
formId
stringRequired
limit
integer
order
string
query
string

Action Response

count
integer
cursor
object
data
array
error
string
status
string
successful
boolean