Rest API
  • Odoo REST API: Version 1.0 documentation
  • Connection
    • Configuration
    • Demo
    • Logging In
      • How you can do
        • Odoo Version Information
        • Oauth1 Authentication
        • OAuth2 Authentication
        • Basic Authentication
  • Calling Methods
    • Check Access Rights
    • List Records
      • Pagination
    • Count Records
    • Read Records
      • Read Single Record
      • Read List Records
      • Read Filter Records
    • Listing Record Fields
    • Create Records
    • Update Records
      • Update Single Record
      • Update List Records
    • Delete Records
      • Delete Single Record
      • Delete List Records
  • Report Printing
    • Print Single Report
    • Print List Reports
  • Inspection and Introspection
    • ir.model
    • ir.model.fields
Powered by GitBook
On this page
  1. Connection

Demo

PreviousConfigurationNextLogging In

Last updated 1 year ago

To make exploration simpler, you can

GET /start

Request:

GET /start HTTP/1.1
Host: odoo-restapi-demo.synconics.com

Response:

HTTP/1.1 200 OK

{
  'client_id': 'uwCrAHAQbL7D9cvJLIztNaZ0bziEGMDh',
  'client_secret': 'FtHzOQVEs0aSEL9AXuIe9k7X6E2MekU7',
  'host': 'odoo-restapi-demo.synconics.com',
  'database': 'odoo_restapi_demo'
}
Headers and Status Codes
Description

Request Headers

  • – the response content type depends on Accept header

Response Headers

  • – this depends on Accept header of the request

Status Codes

  • – no error

  • – there’s no resource

Accept
Content-Type
200 OK
404 Not Found