Agenda To cover basic concepts of rest-assured framework, that will enable us to achieve API automation. Introduction API(Application Programming Interface) is an interface between client and server, which makes a request in specific format and gets response in a specific format. Terminology Endpoint/base uri : Address where API is hosted GET, POST, PUT, DELETE --> common methods to interact with REST API's, often we call them as CRUD operations (Create, Retrieve, Update, Delete) GET --> used to extract data from server POST --> used to send data to server PUT --> to replace existing resources on server DELETE --> to delete a resource on server Resource --> more of a package under endpoint. google/maps, google/docs --> where maps and docs are resources. Parameters Path Parameters: points to specific resource within a collection https://google.com/images/123 Query Parameters: used to sort or filter the resources https://amazon.com/orders?sort_by=4/28/2022 A...