What is the difference between PUT and POST request in REST APIs?
Krunal Lokhande
Select an image from your device to upload
PUT is used to update (one or more fields - like SQL update how works)POST is used to insert a new record (like SQL INSERT)