Getting Started
UI Flow Editor
Community
This page provides an overview of record management in byld.dev, including how to create, update, retrieve, and delete records. It also covers using JSON to create records and FetchXML to retrieve multiple records.
<aside> ℹ️ Note: The CRUD (Create, Retrieve, Update, Delete) actions are server-side actions. These web API requests are translated into actions in byld.dev
</aside>
This action step allows you to create a new record in the database to make new entries or add data to your form.
To configure it, follow these steps:
<aside> ℹ️ Note: To have a variable ID, you need to first initialize an object variable.
</aside>
EXAMPLE:
Create a sample account record.
// define the data to create new account
var data =
{
"name": "Sample Account",
"creditonhold": false,
"address1_latitude": 47.639583,
"description": "This is the description of the sample account",
"revenue": 5000000,
"accountcategorycode": 1
}
Save and publish/update your flow.
Result: The record is created.
<aside> 💡 Tip: If you don’t see changes, you might need to clear your browser files cache.
This action step allows you to update an existing record.
To configure it, follow these steps:
Enter the name of the table you are updating in the Table Schema name field.
Enter the Record ID of the record you want to update.
Add the new data as a dynamic value, a function, or as JSON.
Save and publish/update your flow.
Result: The record is updated.
This action step allows you delete an existing record.
To configure it, follow these steps:
Enter the Table Schema name of the table you want to delete.
Enter the Record ID of the record you want to delete.
Save and publish/update your flow.
Result: The record is deleted.
This action step allows you to retrieve an existing record.
To configure it, follow these steps:
<aside> ℹ️ Note: To have a variable ID, you need to first initialize an object variable.
</aside>
This action step allows you to retrieve multiple records at once.
To configure it, follow these steps: