I would like to formulate a jsonRPC request with which i can read multiple products in one request and i'm having some issues.
My single part request works:
{ "jsonrpc": "2.0",
"method": "call",
"params": {
"service": "object",
"method": "execute_kw",
"args": [
"mydb", 1,
"mypassword",
"product.product",
"search_read",
[[["default_code", "ilike", "XXX1"]]],
{"fields": ["id", "default_code", "barcode", "name"],"limit": 80}
]
},
"id": 3
}
Looking at the documentation am not quite sure on how to formulate a request for multiple parts.
I want the result to return items "XXX1","XXX2"
What would my jsaonRPC request look like to achive this?