46
Views
2
Comments
OS-CLRT-60901 - CommunicationException: Failed to parse JSON request content.
Question

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.

2026-03-12 10-32-06
Wahaj Adil

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:

  1. send data in chunks from the client/consumer.
  2. process each n every chunk separately on the server side.

Hope this helps

Thanks and Regards!

2024-10-12 12-11-20
Kerollos Adel
Champion

hallo @Nishalini Natchimuthu   ,

The error "OS-CLRT-60901 CommunicationException: Failed to parse JSON request content" usually happens because:

  1. The payload is too large (limit ~28MB) – split data into smaller chunks.

  2. Using 'Refresh an Aggregate' includes too many variables – switch to calling a server action directly.

  3. The JSON format is invalid or doesn't match expected data types – double-check structure and types.


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.