0
0
Postmantesting~20 mins

Duplicating and moving requests in Postman - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Postman Request Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding the effect of duplicating a request in Postman

When you duplicate a request in Postman, what happens to the original request and the duplicated one?

ABoth the original and duplicated requests exist independently; changes to one do not affect the other.
BDuplicating a request merges it with the existing one, combining their settings.
CThe original request is deleted and replaced by the duplicate.
DThe duplicate request is linked to the original; changes in one update the other automatically.
Attempts:
2 left
💡 Hint

Think about whether duplicating creates a copy or a linked reference.

Predict Output
intermediate
2:00remaining
Result of moving a request between collections

You have a request named GetUser in Collection A. You move it to Collection B in Postman. What is the state of GetUser in Collection A after the move?

AThe <code>GetUser</code> request remains in Collection A and also appears in Collection B.
BThe <code>GetUser</code> request is deleted from both collections.
CThe <code>GetUser</code> request is removed from Collection A and appears only in Collection B.
DThe <code>GetUser</code> request is duplicated in Collection B but remains linked to Collection A.
Attempts:
2 left
💡 Hint

Consider what 'move' means compared to 'copy'.

🔧 Debug
advanced
2:30remaining
Why does duplicated request keep old environment variables?

You duplicated a request in Postman and moved it to a new collection. However, when running the duplicated request, it still uses environment variables from the original collection's environment. Why?

APostman duplicates requests but does not duplicate or change the environment; the request uses the currently active environment globally.
BDuplicated requests automatically link to the original environment and cannot be changed.
CThe duplicated request copies environment variables but they are hidden and not editable.
DPostman does not allow moving requests between collections with different environments.
Attempts:
2 left
💡 Hint

Think about how environments are selected and applied in Postman.

assertion
advanced
2:00remaining
Assertion on request count after duplication and move

You start with 3 requests in Collection X. You duplicate one request and then move the duplicated request to Collection Y. How many requests remain in Collection X?

A1 request
B2 requests
C4 requests
D3 requests
Attempts:
2 left
💡 Hint

Remember the order: duplicate first, then move the duplicate.

framework
expert
3:00remaining
Automating duplication and move of requests in Postman via scripting

Which Postman feature or tool allows you to automate duplicating and moving requests between collections programmatically?

APostman Monitor scheduling feature
BPostman API to programmatically update collections
CPostman Collection Runner with pre-request scripts
DPostman Console logging commands
Attempts:
2 left
💡 Hint

Think about how to change collection structure outside the UI.