API-Automation

Here we are going to see the simplest and easiest steps about the validation of API thru automation in java using REST Assured, Junit5, MySQL

Basic knowledge on Java, Xampp, MYSQL, Maven, Junit

API-

API Request has the 4 basic info required
End point – the url where the action to be made is provided here
method – action to be made as get, post, put, delete on the url provided
header – authorization cred required to make the request and format of how we receive the response, html, json, txt etc..
data– additional information for the api in order to fulfill the request- data – also called as payload- can be given in body or in query parameters too!

REST Assured –
Uses Given, when and then approach to process the requests

to be updated..