Odoo Online¶
Odoo Online offers private databases hosted and managed by Odoo. Odoo Online databases can be accessed using any web browser and do not require a local installation. They can be used for long-term production or to thoroughly test Odoo, including customizations that do not require custom code.
Tip
To quickly try out Odoo, shared demo databases are available for testing. No registration is required; however, each database is only available for a few hours.
Note
Odoo Online is incompatible with custom modules or modules from the Odoo Apps Store.
Database manager¶
To manage an Odoo Online database, open to the database manager and sign in as the database administrator.
Domain names¶
Configure a custom domain name by selecting a database and clicking Domain Names.
Hide¶
Permanently hide the database from the database manager by selecting it and clicking Hide. In the dialog box, click Yes, I don’t need it anymore.
Note
It is possible to access a hidden database through its URL.
Manage¶
Access all other database management options by selecting it and clicking Manage.
Switch plans¶
Switch pricing plans by clicking Switch under the desired plan.
Upgrade¶
Launch a database upgrade by clicking Upgrade.
Note
This option is only displayed when an upgrade is available.
Rename¶
Rename and change the URL of a database by clicking Rename. In the dialog box, enter a New name and click Rename.
Duplicate¶
Create a copy of the database by clicking Duplicate. In the dialog box, enter a New name and click Duplicate.
Important
By default, the For testing purposes option is enabled. It disables all external actions (emails, payments, delivery orders, etc.) on the duplicated database.
Duplicates expire after 15 days.
A maximum of five duplicates can be created per database. Under extraordinary circumstances, contact Odoo Support to extend the limit.
Download a backup¶
Download a ZIP file containing a database backup by clicking Download Backup.
Note
Databases are backed up daily as per the Odoo Cloud Hosting SLA.
If the Download Backup option is disabled, it means the database is too large to be downloaded using the database manager. Contact Odoo Support to request an alternative download solution.
View admin activity logs¶
View the logs of all actions taken by Odoo employees or the database administrator on the database by clicking View Admin Activity Logs.
Note
Actions taken by Odoo employees are typically the result of requests submitted to Odoo support, done within the context of a quick start project, or necessary to maintain the database.
Transfer ownership¶
Create a support ticket to request a database ownership transfer by clicking Transfer Ownership.
Delete¶
Delete the database and close its related subscription by clicking Delete. In the dialog box, click Delete.
Danger
All the database’s data will be deleted instaneously for all users and cannot be restored. It is recommended to download a backup before deleting a database.
Note
After deletion, the database’s name becomes available to anyone.
Web services¶
To retrieve a list of all databases displayed under the database manager programmatically, call the list method of the
odoo.database model via an external JSON-2 API call.
Example
import requests
APIKEY = "your_apikey"
requests.post(
"https://www.odoo.com/json/2/odoo.database/list",
headers={
"Authorization": f"bearer {APIKEY}",
"X-Odoo-Database": "openerp",
}
json={},
)