Postman Interview Questions 2026

Published July 22, 2026 · Updated July 22, 2026

8 Postman interview questions from Wipro, Capgemini, Stripe, Grab. All difficulty levels, all roles. Upvoted by engineers who were asked them.

8 questions
Companies: Wipro, Capgemini, Stripe, Grab
327 upvotes

Postman Questions by Company

Wipro (5)

Wipro Hard Technical round PostmanREST

Explain common HTTP status codes returned by APIs (2xx, 3xx, 4xx, 5xx). Differentiate between 401 vs 403, 404 vs 400, and 502 vs 503. How do you validate these in automated API tests?

↑ 58 upvotes · 21 engineers asked this · Tester
Wipro Hard Technical round PostmanRESTJava

Describe JSON Schema Validation and its importance in API testing. What is a JSON schema? How do you validate that an API response conforms to the expected schema using Rest Assured or Postman? Give an example schema for a user object with required fields and type constraints.

↑ 61 upvotes · 22 engineers asked this · Tester
Wipro Hard Technical round PostmanREST

Differentiate between Path Parameters and Query Parameters in REST APIs. Give examples: /users/{id} vs /users?role=admin. When should each be used? How do you pass and validate them in automated API tests using Rest Assured or Postman?

↑ 57 upvotes · 21 engineers asked this · Tester
Wipro Hard Technical round JavaRESTPostman

How can nested JSON responses be handled in API testing? Show how to extract a deeply nested value (e.g., response.data.user.address.city) using Rest Assured's JsonPath, and how to validate arrays of objects within the response.

↑ 44 upvotes · 16 engineers asked this · Tester
Wipro Easy Technical round 1-3 yearsPostman

In Postman, how would you chain two requests so the second one uses an ID returned by the first, without hardcoding it?

↑ 18 upvotes · 11 engineers asked this · QA Engineer

Capgemini (1)

Capgemini Medium Technical round PlaywrightPostmanREST

How do you test a REST API that requires OAuth 2.0 authentication? Walk through obtaining a token (client credentials flow), storing it, using it in subsequent requests, and handling token expiry in your automation framework.

↑ 50 upvotes · 31 engineers asked this · Tester

Stripe (1)

Stripe Medium Technical round 2-5 yearsPostmanSystem Design

How would you test a payments API endpoint for race conditions where two simultaneous requests might both succeed at deducting from the same account balance?

↑ 24 upvotes · 11 engineers asked this · QA Engineer

Grab (1)

Grab Medium Technical round 1-4 yearsPostman

How would you test that a "cancel ride" API endpoint correctly refunds a rider only when the cancellation happens within the free-cancellation window, and charges a fee otherwise?

↑ 15 upvotes · 7 engineers asked this · QA Engineer

Practice these questions with AI feedback

Get instant grading on your answers, identify your weak areas, and generate a personalised 14-day study plan — all free.

Build my study plan →

Postman questions at each company

Wipro Postman

Frequently asked questions

Explain common HTTP status codes returned by APIs (2xx, 3xx, 4xx, 5xx). Differentiate between 401 vs 403, 404 vs 400, and 502 vs 503. How do you validate these in automated API tests?
Explain common HTTP status codes returned by APIs (2xx, 3xx, 4xx, 5xx). Differentiate between 401 vs 403, 404 vs 400, and 502 vs 503. How do you validate these in automated API tests?
Describe JSON Schema Validation and its importance in API testing.
Describe JSON Schema Validation and its importance in API testing. What is a JSON schema? How do you validate that an API response conforms to the expected schema using Rest Assured or Postman? Give an example schema for a user object with required fields and type constraints.
Differentiate between Path Parameters and Query Parameters in REST APIs.
Differentiate between Path Parameters and Query Parameters in REST APIs. Give examples: /users/{id} vs /users?role=admin. When should each be used? How do you pass and validate them in automated API tests using Rest Assured or Postman?
How can nested JSON responses be handled in API testing?
How can nested JSON responses be handled in API testing? Show how to extract a deeply nested value (e.g., response.data.user.address.city) using Rest Assured's JsonPath, and how to validate arrays of objects within the response.
How do you test a REST API that requires OAuth 2.0 authentication? Walk through obtaining a token (client credentials flow), storing it, using it in subsequent requests, and handling token expiry in your automation framework.
How do you test a REST API that requires OAuth 2.0 authentication? Walk through obtaining a token (client credentials flow), storing it, using it in subsequent requests, and handling token expiry in your automation framework.