In Screening Online API, how do I get match responses from getMatches?

When I make a request to getMatches it returns matchCount=1 but does not display any match information. See screen shot below...how do I get the match information in the Return Request?

John

image

Best Answer

  • Hi @John Williams,

    It appears you've edited the default <start> and <limit> values. The matchCount correctly returns 1 match, however the matches array is zero based array and you selected to get matches 1-10 in the array, of which there are no matches. If you change the <start> parameter to 0, then you'll get the match information for the first (and only) match.

    I hope this helps,

    Brian