Question
Why am I encountering error 400 with offset-based pagination (OBP)?
Answer
OBP retrieves a maximum of 10,000 records or 100 pages. Requests with more responses than this limit result in a 400 Bad Request error.
For larger requests, you must use cursor-based pagination, which is faster and more efficient.
For details, see these articles: Offset pagination limitations and Comparing cursor pagination and offset pagination.
0 comments