Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deployed CRUD:

image

  • PUT is used to update an existing resource with a new version. It typically requires the entire resource data to be sent in the request.
if not name or not email:
	return jsonify({"error": "Name and email are required!"}), 400
  • PATCH is used to make partial updates to an existing resource. It only requires the fields that need to be updated to be sent in the request.
if not name and not email:
	return jsonify({"error": "At least one field (name or email) is required!"}), 400

About

CRUD Deployed

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages