What is CRUD?
Thread ๐งต๐๐ป
Thread ๐งต๐๐ป
CRUD is an acronym for Create, Read, Update, Delete.
We're talking here about the database operation we're performing.
Let's say we want to manipulate data for the user's database table.
We're talking here about the database operation we're performing.
Let's say we want to manipulate data for the user's database table.
2๏ธโฃ Read
This operation is used to read data for a specific user.
For this operation GET HTTP method is used.
The sample path may look like this:
GET https://example .com/api/users/23 where 23 is the ID of the user.
This operation is used to read data for a specific user.
For this operation GET HTTP method is used.
The sample path may look like this:
GET https://example .com/api/users/23 where 23 is the ID of the user.
4๏ธโฃ Delete
This operation is used to delete a specific user.
For this operation DELETE HTTP method is used.
DELETE https://example .com/api/users/23
This operation is used to delete a specific user.
For this operation DELETE HTTP method is used.
DELETE https://example .com/api/users/23
Hope you enjoyed this short tutorial.
If you found this thread useful, follow @Rapid_API ๐๐
If you found this thread useful, follow @Rapid_API ๐๐
Loading suggestions...