Query available models for an application


Odoo models can be made available at the Application screen




Request

https://example.com/orestapi/application/model


ItemDescriptionNotes
endpoint/orestapi/application/model
typeGET
Header
authorization

Bearer access_token

See ORESTAPI authorization header

Params
--No parameters necessary, it is enough to simply call the endpoint with a valid access_token




Response

[{"name": "Contact", "model": "res.partner"}, {"name": "Lead/Opportunity", "model": "crm.lead"}]


Returns a list of dictionaries (key-value pairs)


ParentKeyTypeDefaultDescriptionNotes

modelstring-the technical name of the model (eg: res.partner, crm.lead, account.invoice, etc)Unique reference of the model, should be used in other API calls

namestring-the human readable name of the model (eg: Contact, Lead/Opportunity, Invoice, etc)This is what users should see