What are your recommendations for naming standards?
Typical REST api naming standards are like this:
- Search GET /users
- Read: GET /users/{id}
- Create: POST /users
- Update: PUT /users/{id}
- Delete: DELETE /users/{id}
@George recommended in some post (can’t find it) not to do this in Wappler so the server connect is nice and clean and small (which I agree with).
How are you all setting up your naming standards for your api calls?
Thanks!
Community Page
Last updated:
Last updated: