We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Check LogIn with DB, User and Password. Get the User ID.
POST /odoo-api/common/login
db
login
password
import requests import json url = 'http://localhost:8069/odoo-api/common/login' data = {'params': {'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/common/login', {params: {db: 'odoo', login: 'admin', password: 'admin'}}).subscribe(data => { console.log(data.result); });