How To Chain API Requests
========================
1) Create Get Request (Listing all users)
https://reqres.in/api/users?page=2
2) Create Global variable "username" is xyz at collection level
3) Write Test script in Request1 to update "username"
jsonData=JSON.parse(responseBody)
value=jsonData.data[0].first_name
pm.globals.set("username", value);
4) Create Put Request (Update user by Name)
https://reqres.in/api/users/2
5) Parameterize username varaible in to 2nd request(PUT)
"name": "{{username}}"
6) Run Collection which contains both the requests
===================================================
Authorizations
---------------
1) Basic Auth:
https://postman-echo.com/basic-auth
username: postman
password: password
2) API Key Auth
Get Request: https://api.openweathermap.org/data/2.5/forecast/daily?q=Delhi&cnt=1
API Key/appid: fe9c5cddb7e01d747b4611c3fc9eaf2c
3) Bearer Token / OAuth 2.0
API Reference URL: https://developer.github.com/v3/repos/
Post Request: https://api.github.com/user/repos
#########################################
Udemy Courses
##########################################
Playwright with TypeScript
https://www.udemy.com/course/learn-playwright-web-api-testing-with-typescript/
Playwright with JavaScript
https://www.udemy.com/course/learn-playwright-with-javascript
Generative AI for Software Testing
https://shorturl.at/Uk2eM
Manual Testing + Agile with Jira Tool
https://www.udemy.com/course/learn-manual-software-testing-with-live-project-jira-tool
Selenium with Java + Cucumber
https://www.udemy.com/course/learn-selenium-with-java-live-project
Selenium with Python & PyTest
https://www.udemy.com/course/learn-selenium-with-python-d/
Selenium with Python using Robot Framework
https://www.udemy.com/course/learn-selenium-with-python-using-robot-framework
API Testing (Postman, RestAssured & SoapUI)
https://www.udemy.com/course/learn-selenium-with-python-using-robot-framework/
Web & API Automation using Cypress with JavaScript
https://www.udemy.com/course/learn-cypress-with-typescript/
JMeter - Performance Testing
https://www.udemy.com/course/learn-jmeter-m/learn/
SDET Essentials (Full Stack QA)
https://www.udemy.com/course/learn-sdet-essentials/
Appium - Mobile Automation Testing
https://www.udemy.com/course/learn-appium-latest-1110-mobile-automation-testing/
Java Collections
https://www.udemy.com/course/learn-java-collections/
Cucumber BDD Framework
https://www.udemy.com/course/learn-cucumber-bdd-framework
Protractor with JavaScript
https://www.udemy.com/course/learn-protractorangular-testing-with-javascript/
#APItesting
#PostmanCourse