Xano Database
This page provides an overview of the Xano Database connection, which enables you to access a Xano database from within your Uiflow application.
This page outlines the following aspects of the Xano Database connection:
For an in-depth tutorial on how to ingest data from Xano and display it within your Uiflow app, see the video below.
Note: To learn how to create an authentication workflow with Xano, see the embedded video in Xano auth.
This table outlines the required information to configure a Xano Database connection:
Configuration field | Description |
---|---|
Connection Name | Name of your connection. This appears as a title for your connection tile in the Connect tab. |
apiBaseURL | Base URL for the API endpoint. |
This section provides an overview of each available action for the Xano Database connection:
The
list
action enables you to retrieve a list of fields from a referenced database. The following table outlines its parameters:Parameter | Type | Description |
---|---|---|
table | string | Xano table identifier. |
authToken | string | Xano-generated access code. |
The
add
action enables you to add fields to a connected database. The following table outlines its parameters:Parameter | Type | Description |
---|---|---|
table | string | Xano table identifier. |
authToken | string | Xano-generated access code. |
body | object | Key-value pairs you want to add to the table. |
The
delete
action enables you to delete a row from the connected Xano database. This table outlines its parameters:Parameter | Type | Description |
---|---|---|
table | string | Xano table identifier. |
id | string | Identifier of the row you want to delete. |
authToken | string | Xano-generated access code. |
The
get
action enables you to retrieve the value of an identified field. This table outlines its parameters:Parameter | Type | Description |
---|---|---|
table | string | Xano table identifier. |
id | string | Identifier of the row you want to retrieve. |
authToken | string | Xano-generated access code. |
The
edit
action enables you to edit the value of an identified field. This table outlines its parameters:Parameter | Type | Description |
---|---|---|
table | string | Xano table identifier. |
id | string | Identifier of the row you want to edit. |
authToken | string | Xano-generated access code. |
body | object | Key-value pairs you want to add to the table. |
The component preview shows how your connection component appears in the Logic view of your Uiflow application.
This section outlines how to:

To change the component name, navigate to the Edit Action section and adjust the Action Name field.

To display parameters on your connection component, click Expose above the parameter fields. Selected parameters appear on the left of the connection component.

Last modified 19d ago