ORESTAPI application status
Get status of an application
Request
Sample request
https://example.com/orestapi/application/status
Item | Description | Notes |
---|---|---|
endpoint | /orestapi/application/status | |
type | GET | |
Header | ||
authorization | Basic rfc_compliant_basic_authorization | See ORESTAPI authorization header |
Params | ||
- | - | No parameters necessary, it is enough to simply call the endpoint with a valid basic http authorization |
Response
Sample response
[{"id": 1, "active": true, "company": [1, "YourCompany"], "display_name": "Confluence"}]
Returns a list of dictionaries (key-value pairs)
Parent | Key | Type | Default | Description | Notes |
---|---|---|---|---|---|
id | integer | - | the id of the application | ||
active | boolean | - | True if the application is active False if the applicaiton is archived | ||
company | list | - | Company id and name | The application is registered for the returned company in Odoo | |
display_name | char | - | The display name of the application | As returned by the name_get() function for the oregional.restapi.application model. |