Create OMM


This request creates an OMM.

Resource

POST /omms

Payload

OMM

Response

Context

Authorization

Administrator

Errors

Example

Request
POST https://xelion.nl/api/v1/master/omms
Payload
{
    "commonName": "OMM2",
    "username": "arno",
    "password": "test",
    "ipAddress": "10.78.40.78",
    "snmpId": 1,
    "objectType": "OMM"
}
Response
{
    "object": {
        "username": "arno",
        "password": "test",
        "ipAddress": "10.78.40.78",
        "snmpId": 1,
        "permissions": "ReadWriteRemove",
        "commonName": "OMM2",
        "oid": "1856117",
        "objectType": "OMM"
    },
    "links": [
        {
            "rel": "self",
            "href": "https://xelion.nl/api/v1/master/omms/1856117",
            "method": "GET"
        }
    ]
}