I am having trouble getting data back when programmatically calling an API. However, when I make the same call manually using Postman I get data back. Here is the code I used to make the call using python.
response = unirest.post(url='my api endpoint',
headers={"Accept": "application/json"}, params={"paramKey": [paramValue]})
print response.body
API call result: {"Success":true,"Message":null,"Data":[]}