Question: Is there a limit on how many /getEventStatistics requests I can run in parallel? For example, I fire 200 requests for different campaigns and then poll for the results one by one.
Answer: /getEventStatistics is a scheduled request: the initial call returns a request_id, and you retrieve the actual data with a separate /getResults call.
We recommend keeping no more than 10 concurrent /getEventStatistics calls (and matching /getResults polls) per account. Firing more at once does not speed up processing and increases the chance of timeouts or throttling.
If you need statistics for many events or campaigns, queue the requests and poll /getResults in batches instead of sending them all in parallel.
Comments
0 comments
Please sign in to leave a comment.