I was messing around with backend workflows, workflows, and UI and somewhere set the pagesize to 4000 inside the List of Contacts action. I then deleted all of those and just built a simple workflow triggered by a button that uses List of Contacts action. In that new workflow, I set the pagesize to 1000, but when it is called after clicking the button (can see via debug mode), I get an error thrown as follows that still references the pagesize of 4000. It seems to be ignoring the pagsize in the workflow for an old value. How do I reset it properly?
{
“error”: {
“code”: 400,
“message”: “Page size must be less than or equal to 2000.”,
“status”: “INVALID_ARGUMENT”
}
}