Hi Team,
Im getting error while parsing JSON request content with multiple data's on the list. If the data size is less i didnt get any issue but getting on higher env due to higher in data. Kindly suggest the way to resolve the issue.
hi @Nishalini Natchimuthu @Nishalini Natchimuthu , hope you're doing well.
This issue is related to the payload size maybe due to size limitations or timeout issues.
I suggest that the best practice is to break large lists into smaller batches (eg - chunks of 200 or 500 items).
Modify the logic to:
Hope this helps
Thanks and Regards!
hallo @Nishalini Natchimuthu ,
The error "OS-CLRT-60901 CommunicationException: Failed to parse JSON request content" usually happens because:
The payload is too large (limit ~28MB) – split data into smaller chunks.
Using 'Refresh an Aggregate' includes too many variables – switch to calling a server action directly.
The JSON format is invalid or doesn't match expected data types – double-check structure and types.