Outbound faxes less entries

Home Forums FaxFinder Outbound faxes less entries

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #15926
    B & T Calhoun
    Participant

    I have 200 outbound faxes but when I run this code I only get 10 entries:
                string uri = “http://MYIP/ffws/v1/outbound_log”;
                WebRequest request = WebRequest.Create(uri);
                request.Credentials = new NetworkCredential(“user”,”password”);
                request.Method = “GET”;
                request.ContentType = “application/xml”;

                var response = request.GetResponse();
                StreamReader sr = new StreamReader(response.GetResponseStream());
                var status =sr.ReadToEnd();

    #15940

    Hello,

    By default limit is set to 10. You can page through the entries using the limit and index parameters.

    http://www.multitech.net/developer/software/faxfinder/web-services-api/fax-log-apis/viewing-call-log/

    Regrds,
    Carol

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘FaxFinder’ is closed to new topics and replies.