Page 1 of 1

Rest API not pulling data

Posted: Fri Apr 10, 2020 10:50 am
by Deon

Hi
I auto created API services.

FIND does not seem to work.. No records pulling through. GET and POST and UPDATE working ok.

When I create folders ie. called Content I get a service that lists as \content\content\content\content\service_name. It for some or other reason creates multiple content subdirectories for no reason.
Image

As you can see from the image, the latency is horrible. Maybe you guys should increase you bandwidth or upgrade your API server. Maybe this is causing the problem I am having?


Rest API not pulling data

Posted: Fri Apr 10, 2020 1:17 pm
by Serhii Kulibaba

Hello Deon,

API Express tries to read items according to the request JSON. In your case it is:
"chapter": null,
"programme": null
....

If you need to read all items with "chapter":1, please use a request JSON below:

{"chapter":1}


Rest API not pulling data

Posted: Fri Apr 10, 2020 8:25 pm
by Deon

Aah, ok thank you.