"Param X is not an integer" error message from API

The error is because you’re using the ? symbol twice.

In a querystring, you use ? once to indicate the start of the querystring, and then the ampersand & to indicate a split between the previous parameters value, and the next parameter.

So your URL should end with ?to_id=174955366&first=100

1 Like