LTM Limited Interview Question

What are the different HTTP methods that Rest Assured supports? Rest Assured supports all the standard HTTP methods that are commonly used in RESTful API design. These methods are: GET: This method is used to retrieve resource(s) from the server. POST: This method is used to create a new resource on the server. PUT: This method is used to update an existing resource on the server. DELETE: This method is used to delete a resource from the server. PATCH: This method is used to apply partial modifications to a resource. TRACE: This method is used to retrieve a diagnostic trace of the actions performed by a server.