
Explore how web services deploy server-side business logic accessible by any programming language, with no user interface, enabling programs to interact with the server rather than a browser.
Explore how web services enable data exchange between clients like news channels and banks, using platform independent solutions for weather, shopping, and payments.
Explore soap and rest as web service models: soap uses XML with WSDL descriptions, while rest is a lightweight, resource-based approach with multiple formats.
Soap is heavy and defines its own security and standards, exposing business logic via a service interface; rest is lighter and enables access with multiple formats.
Explore how rest services are lightweight and fast, using formats like xml and json via uris. Contrast soap's strict standards and slower testing with rest's exposure of functionalities as resources.
Explore common rest methods like get, post, put, patch, delete, head, options, and trace, including when to fetch data, create resources, update fields, or inspect headers and body for debugging.
Learn the basics of JSON, including curly braces, square brackets, and key-value pairs, to model objects, arrays, and nested data for api testing.
Set up Postman on Windows by adding the Chrome extension, launching Postman, and starting a new window to perform API requests.
Explore the Postman window basics, including opening multiple requests and selecting methods from a dropdown. Learn to configure parameters, authentication with username and password, environments, history, and collections.
Clarify the difference between an endpoint and a resource in rest api testing, using an example endpoint city services group katie dot club / country and country as the resource.
Learn how to create the first GET request test case in Postman, send a request, view responses and history, and explore country-specific results.
Learn how rest api parameters work in a get request. See how data attaches to the url as query parameters and is sent to the server.
Define and test get requests with parameters in postman, either manually or via query, send to receive server response showing movie data.
Learn to validate status codes in API responses with Postman, using assertions to compare expected and actual responses and ensure 200 status accuracy.
Measure and validate API response time using Postman by adding tests that assert thresholded performance, such as under 200 ms, and rerun to confirm fast responses.
Set up a test project and database to practice REST API calls, installing prerequisites. Learn post, delete, and batch methods, with plans to automate the Jira API later.
Create and test a post request in postman by sending a json body to a sample resource in a database project, observe a 201 created response.
Learn how to perform a put request in Postman to update a server resource by sending a complete body with the resource id and receiving a 200 ok response.
Learn to perform a delete request in postman to remove a server resource using the delete method with the base url and no body, returning a 200 ok status.
Learn to perform patch requests in postman by sending only the data you want to update, and apply changes to a post with id 3 without a full body.
A powerful GUI platform to make your API development faster & easier, from building API requests through testing, documentation and sharing.
This Course explains
·What are the Webservices
·How to Test the Rest API using Postman
·Differences btween Soap and Rest Services
·Postman Features
·What are Rest API
·Testing Resting API
This course will take you from basic to advance concepts of Postman tool, it will give regular exercise so that individual can practice while learning