Get bridges.
Since Product Version: 3.1
Resource URL
/webacs/api/v1/op/nfv/getBridgesRequest Parameters
Type | Attribute Name | Source | Description |
---|---|---|---|
String |
deviceIp optional |
query |
|
Response Parameters
Type | Attribute Name | Description |
---|---|---|
String |
name |
Name of the bridge. |
port |
List of ports assigned to the bridge |
|
Boolean |
stp |
Enable / disable spanning tree protocol. |
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 Response Payload
https://172.25.123.114/webacs/api/v1/op/nfv/getBridges
<?xml version="1.0" ?> <mgmtResponse responseType="operation" requestUrl="../../../../pages/common/login.jsp.html" rootUrl="https://172.25.123.114/webacs/api/v1/op/"> <bridge> <name>String value</name> <port_list> <port> <name>String value</name> </port> </port_list> <stp>true</stp> </bridge> </mgmtResponse>
Sample JSON Response Payload
https://172.25.123.114/webacs/api/v1/op/nfv/getBridges.json
{ "mgmtResponse" : { "@responseType" : "operation", "@requestUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/nfv\/getBridges", "@rootUrl" : "https : \/\/172.25.123.114\/webacs\/api\/v1\/op\/", "bridge" : { "name" : "String value", "port_list" : { "port" : { "name" : "String value" } }, "stp" : true } } }