What is the Thingworx service json result max size?
Hi,
I run an API in postman tool which returns 2 mb size of data (77000 lines) but the same API in Thingworx is not returning the entire data instead it returns only one record (176 lines). We have also verified at the backend logs for both API calls, backend returns entire data. what might be the issue here?
var head = {
"Content-Type": "application/json",
"client_id": me.ClientId,
"client_secret": me.ClientSecret
};
var params = {
proxyScheme: undefined /* STRING */ ,
headers: head /* JSON */ ,
ignoreSSLErrors: false /* BOOLEAN */ ,
useNTLM: undefined /* BOOLEAN */ ,
workstation: undefined /* STRING */ ,
useProxy: undefined /* BOOLEAN */ ,
withCookies: undefined /* BOOLEAN */ ,
proxyHost: undefined /* STRING */ ,
//url: "https://<<server>>/api/bomDetails/" + partNumber,
timeout: undefined /* NUMBER */ ,
proxyPort: undefined /* INTEGER */ ,
password: undefined /* STRING */ ,
domain: undefined /* STRING */ ,
username: undefined /* STRING */
};
// result: JSON
var result = Resources["ContentLoaderFunctions"].GetJSON(params);

