I'd like to use the Form API to fetch the total count of form submissions. As far as I can tell, this data isn't directly available in the API. The method I've come up with so far is to get all form submissions via `/form-integrations/v1/submissions/forms/`, 50 at a time, then count the size of the list.
Is there a more straightforward way of doing this? Given the max of 50 results per call, it seems pretty easy to hit a rate limit if your list is in the 1000s.