There was an error while loading. Please reload this page.
Get Odoo Model Fields.
POST /odoo-api/object/search_count
model
filters
db
login
password
import requests import json url = 'http://localhost:8069/odoo-api/object/fields_get' data = {'params': {'model': 'res.partner', '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/fields_get', {params: {model: 'res.partner', db: 'odoo', login: 'admin', password: 'admin'}}).subscribe(data => { console.log(data.result); });