network/update

Updates a network.

Request Message

Authorization

Access JSON Web Token (ManageNetwork)

Message Representation

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

Message Parameters

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

Server Message

Message Representation

{
    "action": {string},
    "status": {string},
    "requestId": {object}
}

Message Parameters

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