network/insert

Inserts new network.

Request Message

Authorization

Access JSON Web Token (ManageNetwork)

Message Representation

{
    "action": {string},
    "requestId": {object},
    "network": {
        "name": {string},
        "description": {string}
    }
}

Message Parameters

actionYesstringAction name: network/insert
requestIdNoobjectRequest unique identifier, will be passed back in the response message.
networkYesobjectNetwork resource to insert.
network.nameNostringNetwork display name.
network.descriptionNostringNetwork short description.

Server Message

Message Representation

{
    "action": {string},
    "status": {string},
    "requestId": {object},
    "network": {
        "id": {int}
    }
}

Message Parameters

Property NameTypeDescription
actionstringAction name: network/insert
statusstringOperation execution status (success or error).
requestIdobjectRequest unique identifier as specified in the request message.
network.idintCreated network ID.