Skip to Content
Menu
This question has been flagged
1 Atsakyti
2137 Rodiniai

Is it possible to synchronize data between Odoo enterprise on Odoo.com with other SW? Does the API work here?

Portretas
Atmesti
Best Answer

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

Portretas
Atmesti
Related Posts Replies Rodiniai Veikla
0
rugp. 24
560
2
liep. 24
744
2
birž. 24
682
2
kov. 24
2885
1
vas. 24
801