How to get all the jobs via curl command for sauce labs api?

Viewed 18

I am trying to retrieve all the jobs in saucelabs, currently i am running curl on the api link https://api.eu-central-1.saucelabs.com/v1/rdc/jobs/, but only a handful of results are being shown instead of all. Is there a way to show all?

My current command is: curl -u "user:key" -X GET "https://api.eu-central-1.saucelabs.com/v1/rdc/jobs/"

if anyone knows how to make all the results show, it would be much appreciated.

1 Answers

It sounds like you are at least getting some data back. You may need to increase the limit param, per our docs: https://docs.saucelabs.com/dev/api/rdc/

For example

https://api.eu-central-1.saucelabs.com/v1/rdc/jobs/?limit=800

sauce labs jobs RDC docs

Related