Cisco Evolved Programmable Network Manager API
Evolved Programmable Network Manager API Documentation

POST nfv/deleteBridge

Resource Information

Rate Limiting?

Yes

Sorting?

No

Paging?

No

Filtering?

No

Response Formats

xml

json

User Group

NBI Write

HTTP Methods

POST

Delete a bridge.

Since Product Version: 3.1

Resource URL

/webacs/api/v1/op/nfv/deleteBridge

Request Payload Parameters

Type Attribute Name Description

Bridge[]

bridges

Bridges DTO.

Server

server

Server DTO.

String

transactionId

Response Parameters

Type Attribute Name Description

String

deploymentStage

String

eventTime

String

payload

Integer

statusCode

The response status code.

String

statusMessage

The response message.

String

transactionId

The unique transaction id.

Sample Payloads

Sample payloads are for information only. They are automatically generated and the values included may not be representative of actual valid data values.

Sample XML Request Payload

https://172.25.123.114/webacs/api/v1/op/nfv/deleteBridge

<?xml version="1.0" ?>
<bridgeConfiguration>
  <bridges>
    <bridge>
      <name>String value</name>
      <port_list>
        <port>
          <name>String value</name>
        </port>
      </port_list>
      <stp>true</stp>
    </bridge>
  </bridges>
  <server>
    <ipAddress>String value</ipAddress>
    <port>15</port>
    <protocol>String value</protocol>
  </server>
  <transactionId>String value</transactionId>
</bridgeConfiguration>

Sample JSON Request Payload

https://172.25.123.114/webacs/api/v1/op/nfv/deleteBridge.json

{
  "bridgeConfiguration" : {
    "bridges" : {
      "bridge" : {
        "name" : "String value",
        "port_list" : {
          "port" : {
            "name" : "String value"
          }
        },
        "stp" : true
      }
    },
    "server" : {
      "ipAddress" : "String value",
      "port" : 15,
      "protocol" : "String value"
    },
    "transactionId" : "String value"
  }
}

Sample XML Response Payload

https://172.25.123.114/webacs/api/v1/op/nfv/deleteBridge

<?xml version="1.0" ?>
<mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/">
  <serviceResponse>
    <deploymentStage>String value</deploymentStage>
    <eventTime>String value</eventTime>
    <payload>String value</payload>
    <statusCode>15</statusCode>
    <statusMessage>String value</statusMessage>
    <transactionId>String value</transactionId>
  </serviceResponse>
</mgmtResponse>

Sample JSON Response Payload

https://172.25.123.114/webacs/api/v1/op/nfv/deleteBridge.json

{
  "mgmtResponse" : {
    "@responseType" : "operation",
    "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/nfv\/deleteBridge",
    "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/",
    "serviceResponse" : {
      "deploymentStage" : "String value",
      "eventTime" : "String value",
      "payload" : "String value",
      "statusCode" : 15,
      "statusMessage" : "String value",
      "transactionId" : "String value"
    }
  }
}