Public API for NMIS configuration. "omk/admin/api/v2/"
We can manage the Administration Configuration resources below using this API:these endpoints - http://host
/en/omk/admin/api/v2/resource
Resource is our term for items in a configuration file or database.
...
Request Method | Operation | URL Example | id required | Notes |
---|---|---|---|---|
POST | create | /resource | n | Insert a new resource. |
GET | read list | /resource | n | Returns a list of resources. |
GET | read one | /resource/id | y | Returns the details of a resource. |
PUT | update | /resource/id | y | Update the details of a resource. |
DELETE | delete | /resource/id | y | Delete a resource. |
API for Resources: | Locations | Services | Contacts | Escalations | Events | Polling-Policy | Users | Access | Customers | BusinessServices |
---|
...
Operation | Method | URL | Example | ||
---|---|---|---|---|---|
Authenticate | POST | http://host/en/omk/admin/login |
|
We should receive a 200 response and a cookie, that we can reuse for next API calls.
...