Hi everyone,
We are trying to get the form fill out activity details for members of static lists and due to some reason it does not run the api call successfully when adding the listid parameter and if list id parameter is removed it does pull the information but it is limited to 300 records only.
we are able to run following call successfully:
sample call that is working without list id : base_url/rest/v1/activities.json?nextPageToken=xyz&activityTypeIds=1,2,3
following call is not working as expected and it returns the nextpage token when running following call :
Expected call : base_url/rest/v1/activities.json?nextPageToken=xyz&activityTypeIds=1,2,3&listId=1234
any suggestions will be appreciated
Solved! Go to Solution.
Nothing unexpected here. You have to follow the chain of nextPageToken values. And some pages are empty because of the way the log is scanned, so you just continue to the next one.
ah got it! Thank you very much 🙂