CRUD Operations
In computer programming, create, read, update, and delete (CRUD) are the four basic functions of persistent storage.
Last updated
In computer programming, create, read, update, and delete (CRUD) are the four basic functions of persistent storage.
Last updated
CRUD (Create. Read. Update. Delete) API Endpoints
Xano can auto-generate basic CRUD API operations for each table you create which makes it easy to retrieve, send and delete data from your database. Of course, you can get as complex as you need to be in Xano but understanding the basics is essential.
Here they are in more detail
Create: This API creates a new record in the database.
Read(single user): This API gets a single record in the database using the defined input, in this example, we can use the primary ID.
Read(all users): This API gets all records in the database.
Update: This API updates a single record that is found by a certain input. In this example, we can use the primary ID.
Delete: This API deletes a record in the database by using a certain input. In this example, we can use the primary ID.