Is it possible to synchronize data between Odoo enterprise on Odoo.com with other SW? Does the API work here?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
1
Odpowiedz
2556
Widoki
Yes you can build your APIs through Odoo's XMLRPC point located at this URL /xmlrpc/2/object
here is an example of an XMLRPC request from a PHP file
$url = "http://demo3.odoo.com";
$db = "demo3";
$username = "admin";
$password = "admin";
$end_point = $url . "/xmlrpc/2/object";
$model = ripcord::client($end_point);
$result = $model->execute_kw(
$db,$uid,$password,"res.partner","search_read",
array(
array(
// array("id","=",1),
array("name","ilike","ali")
),
),
array('fields'=>array("name","phone","email"))
);
echo json_encode($result);
You can find a full example here if you want.
Happy to help :) an upvote will be awesome
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
0
sie 24
|
1009 | ||
|
2
lip 24
|
1274 | ||
|
2
cze 24
|
1155 | ||
|
2
mar 24
|
3491 | ||
|
1
lut 24
|
1188 |