Execute other Request By Id in the Pre-request Script

Hey coming here from Insomnia but guess this is the product that my company has…
Can you please tell my why it doesn’t seem to be able to execute another request by ID
in the Pre-request Script section ?
i want to build a simple flow of 3 request
create-session(exract_session_id) → authenticate(extract_token) → do_actuall_call(using the token)

can i really only do this with collection runners ? (<- horrible)

And if it has to be those collection runners… why can’t i save them for my team to use?

Hey! Welcome to the Postman community!

I think what you’re looking for would be found here.
With setNextRequest you can use request name or request ID.

Hope this helps :smile:

Hey Kevin thanks for the response. Set nextrequest does not work for me in a pre-request script. Tried to set the request itself to the env but that does not work since the test part of a request is not executed

And if I understand correctly it want the opposite of that. Otherwise you cannot build dependencies and reuse requests

SetNextRequest would create

A → B → C

There decided what to run before can build

A ← B ← C
… ^- D
… …^- E

Hi there - if you would like an example of send next request and working with this workflow, take a look at my collection - Visualizing Postmanauts across the globe.
In the third folder - Using Request workflows, you can see how postman.setNextRequest() method is utilized.

https://www.postman.com/postman/workspace/published-postman-templates/folder/20021534-f2b39eb1-393a-4a9e-8fb0-135abb60c9d3?ctx=documentation

you don’t really seem to understand what send next request is not what i want. i want doBeforeRequest executed with pre-script and test.
when doing only next request you can only build forward dependencies which is stupid if you want to reuse request chains.

maybe this explains it better…
given:
Request A: create session, store session id in ENV
Request B: get Auth token, uses session id from ENV, creates token which is stored in ENV

Request C: does something with that token (A and B have to be run before, always)


yes you could do that with A.setNext(B) B.setNext(C) BUT
image there is a Request D - Z
all of them need A and B before
with the forward dependency you need to replicate A and B for all cases D - Z since it can only beforward.

Insomnia does this very well. maybe try your competitor and learn.
I’ve seen that you also have a FLOW feature that might be able todo what i want by chaining request as i need it… yet the client gives me error and has the + (create) button disabled

Hi again,

Your initial question was about executing other requests by their ID in the pre-request script, which is possible. What you are looking to achieve is possible with setNextRequest. It may be different from the way you are used to and may require some creative thinking, but there are also collection level and folder level pre-request / test sections that could help you accomplish this too.

In your example of sessions and auth, if A and B are always going to be required for other requests, you can make that a pre-request script instead of two separate requests.

For example, If all of the requests in a collection will need to rely on A & B, move the A & B logic to the collection level pre-request script to store your IDs in the environment. Then anytime you run a request, it’s going to do something with that token. If it’s not all requests in a collection, you can put the ones that do need it into a folder under a collection and give that folder the pre-request script.

Much of this and more is explained in our docs page on writing pre-request scripts.
If you need some reference, I built a Slack bot that authenticates with the Twitch API in this way by using a collection level pre-request script before every request.

As for Flows, you can learn more about them here.

Hello hello,

I know it has been a while, but I think I am having the same issue as Silas.

Just like Silas, I have a (retrieve token) request I would like to execute before each request by ID or name. I know of 2 possibilities as of now, which are:

  1. Building the request with JSON in the pre-request script as per this docs page.
  2. Using the setNextRequest function as per this docs page.

The problem I am having with these solutions however are as follows.

  1. I would like to avoid having to build an entire request in JSON and sending it in a script for ease of use.

Creating a request that can be referenced is more easily managed and makes sure responsibilities are split is my current goal. The token request would make sure the correct endpoint is called and that the result is saved in a variable so the request that will be called afterward can use it. The request that is manually called (which indirectly also executes the token request) will then take care of running tests and showing the response. I think this is what Silas meant with this.

Request A: create session, store session id in ENV
Request B: get Auth token, uses session id from ENV, creates token which is stored in ENV
Request C: does something with that token (A and B have to be run before, always)

It could be possible that the token request is only required for 4 of 10 requests in the collection. It would be unclear, inefficient, and difficult to manage if for each of these requests a JSON request has to be set up in a pre-request script.

  1. I’ve unfortunately not gotten the setNextRequest function to work for the thing I am looking to do, the reason is likely stated in the documentation.

Use setNextRequest() when you run an entire collection
The postman.setNextRequest() is intended for use when running a collection using the Collection Runner, the Postman CLI, or Newman. It has no effect when you run a request using Send .

This restriction makes it not possible to run a test by ID or name before the executed test. For example, I have 2 requests named “/berry” and “token”. When I manually execute the “/berry” request, I would like to execute the “token” request before the “/berry” request is executed to make sure I am authorized to do so without having to do another manual execution of the “token” request.

So to clarify, I’m looking to call requests by ID or Name in the pre-request script when manually executing another request.

It could very well be that I am missing something, if so it would be great if someone could point me into the right direction. If this is not possible that’s fine.

I don’t think you can, but you can use sendRequest in a pre-request script instead to get your token.

1 Like