1

All,

I am trying to pull all data from successfactors using oData API but it give only 1000 rows at a time

How to pull all the data at a time?

Thanks

umesh.chape
  • 2,895
  • 5
  • 16
  • 17

1 Answers1

2

The OData API can return a maximum number of 1000 records in a single page. To get the next page of your dataset, you have to call the __next API (which carries a skip token) from previous response. Repeat this action until you get all data via API.

mcjai
  • 558
  • 4
  • 9