The root cause is the deserialize of orderSearchRequest in the post request body results in a empty dict which results in '400' error code CT response with following message
b'{"code":400,"errors":["Invalid JSON at \'.query\': Exactly one [fullText], [exact], [prefix], [wildcard], [range] or [exists] expression needed."]}'
could you please assists what is missing here?
thanks
I'm trying to query https://docs.commercetools.com/api/projects/order-search#search-orders endpoint by calling:
orderSearchRequest = OrderSearchRequest("query"=range_query) ctClient = client.with_project_key("prod").orders().search().post(body=orderSearchRequest}))
The root cause is the deserialize of orderSearchRequest in the post request body results in a empty dict which results in '400' error code CT response with following message b'{"code":400,"errors":["Invalid JSON at \'.query\': Exactly one [fullText], [exact], [prefix], [wildcard], [range] or [exists] expression needed."]}'
could you please assists what is missing here? thanks