November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I will file a bug to Commerce team. Thanks for bringing this into our attention and apologies for the inconvenience.
There is a bug in ServiceApi when using System.Text.Json as default serializer with camelCase as formatting. Using Newtonsoft works as expected.
After some digging I the cause. JsonSerializerOptions in method GetSerializerOptions is not instanciated correctly while using camelCase. It is using the default constructor which will use PascalCase as default.
The options should set camelCase as PropertyNamingPolicy or use another constructor that takes default values.