Get Hardware Bypasses in Element (v2.0)
GET/v2.0/api/tenants/:tenant_id/elements/:element_id/hardwarebypass
List all the hardware bypasses in an element.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
element_id stringrequired
The element ID.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
element_bypass BypassInfo[]
The information on the element bypass pair.
lan string
The LAN network of the bypass.
lan_interface_id string
The LAN interface ID.
wan string
The WAN network of the bypass.
wan_interface_id string
The WAN interface ID.
id string
The ID.
{
"element_bypass": [
{
"lan": "string",
"lan_interface_id": "string",
"wan": "string",
"wan_interface_id": "string"
}
],
"id": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "INTERFACE_CONFIG_HWBYPASS_NOT_SUPPORTED"
}
]
}
}
Loading...