Welcome to Cureocity Odoo Docs
Click here to explore staging server.
Authentication
Method POST
Endpoint session/authenticate
Once autneticated use the following endpoint to do all the CRUD operations
Method POST
Endpoint dataset/call_kw
Searching and retriving record ids
{
"params": {
"model": "product.product",
"method": "search",
"args":[],
"kwargs":{
"domain":[]
}
}
}
Read and retrive details of each record
{
"params": {
"model": "product.product",
"method": "read",
"args":[3],
"kwargs":{
"fields": ["name"]
}
}
}
Do search and read using a single method
Method search_read is a combination of above explained search and read methods