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.
Get Odoo Version Data. This request is ideal for testing the connection to the server.
POST /odoo-api/common/version
None
import requests import json url = 'http://localhost:8069/odoo-api/common/version' data = {'params': {}} 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/version', {params: {}}).subscribe(data => { console.log(data.result); });