Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to make a schedule that Postman executes request?

I am using Postman to run a Runner on some specific requests. Is it possible to create a schedule to execute (meaning every day on specific hour)?

like image 439
kostas Avatar asked Jun 28 '17 10:06

kostas


2 Answers

You can set up a Postman Monitor on your collection, and schedule it to execute the request each minute/hour/weekly basis.

This article can get you started on creating your monitor. Postman allows 1000 monitoring requests for free per month.

PS: Postman gives you details about the responses as in No. of successful requests, response codes, response size etc. I wanted the actual response for my test. So I just printed the response body as shown below. Hope it helps someone out there :)

enter image description here

like image 127
daBigBug Avatar answered Oct 22 '22 18:10

daBigBug


You may do this using a scheduling tool that can launch command lines and use Newman ... I don't think Postman can do it on its own

Alexandre

EDIT: You may do this using a scheduling tool that can launch command lines and use Newman ... I don't think Postman can do it on its own

check this postman feature : https://www.getpostman.com/docs/postman/monitors/intro_monitors

like image 22
A.Joly Avatar answered Oct 22 '22 18:10

A.Joly