Skip to content

Softr

Softr

Softr is a no-code platform that lets you build client portals, internal tools, and web applications from Airtable in minutes. It provides user management and database APIs for quickly building applications without writing code. With the Softr integration in SquadOS, your agents can create and manage databases, tables, fields, and records directly in your organization’s Softr workspace.

This tool uses an API key (API_KEY) to connect.

You will need the following fields:

FieldRequiredDescription
api_keyYesAPI key generated in the Softr dashboard, used to authenticate all database API requests.
  1. Go to softr.io and log in to your account.
  2. Inside your workspace, access settings by clicking your profile icon in the top-right corner.
  3. Navigate to Settings → API (or Workspace Settings → API Keys).
  4. Click Generate API Key (or Create new key) to create an API key.
  5. Copy the generated value — that is the value to use in the api_key field when connecting in SquadOS.
  1. Go to Tools in the side menu (/admin/tools).
  2. Open the Available tab and search for Softr.
  3. Click the card to open the details modal and hit Connect.
  4. You’re taken to the secure connection page hosted by Composio, where you enter the API key obtained above.
  5. Once done, you’re sent back to SquadOS with the account connected and the tool available for your agents. (Connection-flow details in Organization Tools.)

SOFTR_CREATE_DATABASE

Tool to create a new database in a Softr workspace. Use when you need to set up a new database for storing data within a specific Softr workspace.

NameTypeRequiredDescription
namestringYesThe name of the new database. Choose a descriptive name that helps identify the database purpose. This will be displayed in the Softr interface.
descriptionstringNoOptional description of the database. Provide additional context about the database purpose, data structure, or usage guidelines.
workspaceIdstringYesThe ID of the workspace where the database will be created. This is a required parameter that identifies which workspace will contain the new database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_CREATE_RECORD

Creates a new record in a Softr database table. Use when you need to add new data to a specific table in your Softr database.

NameTypeRequiredDescription
fieldsobjectYesField values for the new record. This is a mapping of field IDs to their values. Field IDs are specific to your table schema in Softr. Example: {'c63tL': 'test@example.com', 'o0JWv': 'Test User'}
table_idstringYesThe unique identifier of the table where the record will be created.
database_idstringYesThe unique identifier of the database where the record will be created.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_CREATE_TABLE

Tool to create a new table within a specified Softr database. Use when you need to add a new data structure with custom fields to organize information.

NameTypeRequiredDescription
namestringYesThe name of the new table.
fieldsarrayYesCollection of field definitions for the table. At least one field is required. Each field must have a name and type.
database_idstringYesThe unique identifier of the database where the table will be created.
descriptionstringNoOptional description of the table to explain its purpose.
primary_field_namestringNoDesignates which field serves as the primary identifier for records in this table. Must match the name of one of the fields in the fields array.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_CREATE_TABLE_FIELD

Tool to add a new field to a Softr table. Use when you need to add a new column to an existing table, such as adding an email field, a text field, or any other field type to store additional data.

NameTypeRequiredDescription
namestringYesThe name of the new field. This will be the display name shown in the table and used to reference the field. Should be descriptive and unique within the table.
typestringYesThe type of the field, which determines what kind of data can be stored. Common types include SINGLE_LINE_TEXT for short text, EMAIL for email addresses, NUMBER for numeric values, CHECKBOX for boolean values, and SELECT for dropdown choices.
optionsobjectNoConfiguration options specific to the field type. For SINGLE_LINE_TEXT, can include minLength and maxLength constraints. For SELECT, would include the list of choices. Can be an empty object {} if no specific options are needed.
tableIdstringYesThe unique identifier of the table where the field will be added.
databaseIdstringYesThe unique identifier of the database containing the table (UUID format).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_DELETE_DATABASE

Tool to delete a specific database by its ID from Softr. Use when you need to remove a database. The database must be empty unless the force parameter is set to true. This operation is irreversible.

NameTypeRequiredDescription
forcebooleanNoIf true, deletes the database even if it contains tables or records. If false (default), deletion will fail if the database is not empty. Use with caution as this operation is irreversible.
database_idstringYesThe unique identifier of the database to delete.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_DELETE_RECORD

Tool to delete a record from a Softr database table. Use when you need to permanently remove a specific record.

NameTypeRequiredDescription
table_idstringYesThe unique identifier of the table containing the record.
record_idstringYesThe unique identifier of the record to delete.
database_idstringYesThe unique identifier of the database containing the table.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_DELETE_TABLE

Tool to delete a specific table by its ID from a database. Use when you need to remove a table. The table must be empty unless the force parameter is set to true.

NameTypeRequiredDescription
forcebooleanNoIf true, deletes the table even if it contains records. If false (default), deletion fails if table is not empty.
table_idstringYesThe unique identifier of the table to delete.
database_idstringYesThe unique identifier of the database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_DELETE_TABLE_FIELD

Tool to delete a field from a Softr database table. Use when you need to remove a field from a table. Returns success confirmation upon completion.

NameTypeRequiredDescription
field_idstringYesThe unique identifier of the field to delete.
table_idstringYesThe unique identifier of the table.
database_idstringYesThe unique identifier of the database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_DATABASE

Tool to retrieve details for a specific database by ID. Use when you need to fetch information about a particular database in Softr.

NameTypeRequiredDescription
database_idstringYesThe unique identifier of the database to retrieve.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_DATABASES

Tool to retrieve all databases available in the workspace. Use when you need to list or discover available databases for further operations.

NameTypeRequiredDescription
limitintegerNoMaximum number of databases to return per request. Defaults to returning all if not specified.
offsetintegerNoNumber of databases to skip for pagination. Defaults to 0 if not specified.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_RECORD

Tool to retrieve a single record by its ID from a Softr database table. Use when you need to fetch detailed information about a specific record.

NameTypeRequiredDescription
tableIdstringYesThe unique identifier of the table.
recordIdstringYesThe unique identifier of the record to retrieve.
databaseIdstringYesThe unique identifier of the database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_RECORDS

Tool to retrieve a paginated list of records from a Softr table. Use when you need to fetch records from a specific table with optional pagination parameters.

NameTypeRequiredDescription
limitintegerNoMaximum number of records to return per request. Defaults to 10 if not specified.
offsetintegerNoNumber of records to skip for pagination. Defaults to 0 if not specified.
tableIdstringYesThe unique identifier of the table.
databaseIdstringYesThe unique identifier of the database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_TABLE

Tool to retrieve details for a specific table by ID. Use when you need to inspect table structure, fields, or metadata.

NameTypeRequiredDescription
table_idstringYesThe unique identifier of the table to retrieve.
database_idstringYesThe unique identifier of the database containing the table.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_TABLE_FIELD

Tool to retrieve a specific field from a Softr table by field ID. Use when you need detailed configuration information about a table field, including its type, options, and metadata.

NameTypeRequiredDescription
fieldIdstringYesThe field identifier.
tableIdstringYesThe table identifier.
databaseIdstringYesThe database identifier (UUID format).
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_TABLES

Retrieves all tables within a specified Softr database. Use when you need to list or explore the tables available in a database.

NameTypeRequiredDescription
databaseIdstringYesThe unique identifier of the database to retrieve tables from.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_GET_TABLE_VIEWS

Tool to retrieve all views for a specified table in a Softr database. Use when you need to list or inspect available views for a table.

NameTypeRequiredDescription
table_idstringYesThe unique identifier of the table whose views are to be retrieved.
database_idstringYesThe unique identifier of the database containing the table.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_SEARCH_RECORDS

Tool to search records in a Softr database table with filtering and pagination. Use when you need to retrieve records from a specific table, optionally filtered by field values and paginated for large result sets.

NameTypeRequiredDescription
filterobjectNoFilter conditions for searching records. Structure varies based on table schema and filter requirements.
pagingobjectNoPagination options for record search.
table_idstringYesThe unique identifier of the table to search records in.
database_idstringYesThe unique identifier of the database containing the table.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_UPDATE_DATABASE

Tool to update an existing database’s name and/or description. Use when you need to modify database metadata after creation.

NameTypeRequiredDescription
namestringNoThe new name for the database.
database_idstringYesThe unique identifier of the database to update.
descriptionstringNoThe new description for the database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_UPDATE_RECORD

Tool to update an existing record’s field values in a Softr table. Use when you need to modify specific fields of a record by providing the database ID, table ID, record ID, and the new field values.

NameTypeRequiredDescription
fieldsobjectYesA map of field IDs to their new values. Field IDs are unique identifiers for each column in the table (e.g., 'o0JWv'). The values can be strings, numbers, booleans, or other types depending on the field type in your Softr table schema.
table_idstringYesThe unique identifier of the table containing the record.
record_idstringYesThe unique identifier of the record to update.
database_idstringYesThe unique identifier of the database containing the table.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_UPDATE_TABLE

Tool to update a table’s name and/or description in Softr Database. Use when you need to modify table metadata. To modify fields, use the field-specific endpoints instead.

NameTypeRequiredDescription
namestringYesThe name of the table (required by API).
table_idstringYesThe unique identifier of the table.
database_idstringYesThe unique identifier of the database.
descriptionstringNoThe new description of the table.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.

SOFTR_UPDATE_TABLE_FIELD

Updates an existing field in a Softr table. Use when you need to modify a field’s name, type, or configuration options. Note: The API requires both type and options fields even if only updating the name.

NameTypeRequiredDescription
namestringNoThe new name of the field. If not provided, the field name remains unchanged.
typestringYesThe field type. Must be provided even if not changing the type. Common types: SINGLE_LINE_TEXT (text), EMAIL (email validation), NUMBER (numeric), CHECKBOX (boolean), SELECT (dropdown), LONG_TEXT (multi-line text).
optionsobjectYesConfiguration options specific to the field type. For SINGLE_LINE_TEXT: {minLength: 0, maxLength: 1024}. For NUMBER: {precision: 2}. For SELECT: {choices: ['Option1', 'Option2']}. Structure varies by field type.
field_idstringYesThe unique identifier of the field to update.
table_idstringYesThe unique identifier of the table.
database_idstringYesThe unique identifier of the database.
NameTypeRequiredDescription
datastringYesData from the action execution.
errorstringNoError if any occurred during the execution of the action.
successfulbooleanYesWhether or not the action execution was successful.