Question 1 out of 5

    What is the difference between PUT and POST methods in RESTful API?

    PUT is used for updating and POST is used for creating

    In RESTful API, PUT is used to update an existing resource, while POST is used to create a new resource.