-
Notifications
You must be signed in to change notification settings - Fork 32
Odoo Delete
Ignacio Buioli edited this page Jan 26, 2021
·
1 revision
Delete a record on model.
POST /odoo-api/object/unlink
Attribute | Type | Required | Description |
---|---|---|---|
model |
string | yes | Odoo model |
id |
number | yes | Odoo record ID to delete |
db |
string | yes | Odoo server DB name |
login |
string | yes | Odoo User |
password |
string | yes | Odoo User Password |
import requests
import json
url = 'http://localhost:8069/odoo-api/object/unlink'
data = {'params': {'model': 'res.partner', 'id': 3, 'db': 'odoo', 'login': 'admin', 'password': 'admin'}}
headers = {'Content-type': 'application/json'}
r = requests.post(url, data=json.dumps(data), headers=headers)
print(r.text)
this.http.post<any>('http://localhost:8069/odoo-api/object/unlink',
{params: {model: 'res.partner', id: 3, db: 'odoo', login: 'admin', password: 'admin'}}).subscribe(data => {
console.log(data.result);
});