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
- Účetnictví
- Sklad
- PoS
- Project
- MRP
This question has been flagged
1
Odpovědět
2283
Zobrazení
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
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Přihlásit seRelated Posts | Odpovědi | Zobrazení | Aktivita | |
---|---|---|---|---|
|
0
srp 24
|
748 | ||
|
2
čvc 24
|
989 | ||
|
2
čvn 24
|
848 | ||
|
2
bře 24
|
3138 | ||
|
1
úno 24
|
944 |