54156: Invalid List Item data
SYNC
ERROR
This error occurs when you send Data as null in a Sync List item request. For create requests, include the data body parameter and pass a JSON string that represents a schema-less object. A ListItem can store up to 16 KiB of data.
- You tried to create a List item without including the
Dataparameter in the request body. - You passed
Dataasnullinstead of a JSON string.
- Include the
Dataparameter in the request body when you create the List item. The create endpoint acceptsapplication/x-www-form-urlencodedinput and requiresdata. - Send
Dataas a serialized UTF-8 JSON object, such as{}, instead ofnull. - If you update an existing List item, only send
datawhen you want to change the stored object, and make sure the value is still a JSON string. - Keep the List item payload at or below 16 KiB.