v1
latestOpenAPI 3.0.02026-07-243339471.1 MBList Gateway VLANs
Retrieves a list of VLANs present in the gateway with details like name, VLAN type, status and more.
Path parameters
The gateway serial number.
Serial number of the gateway device.
Query parameters
OData Version 4.0 filter string (limited functionality). Supports only 'and' conjunction ('or' and 'not' are NOT supported). Supported fields and operators are in the below given table.
| Field | Operators |
|---|---|
| status | eq and in |
| vlanType | eq and in |
The operators are implemented as follows:
-
eq: Only values exactly matching the given value are returned.
-
in: Only values present in the given list are returned.
A comma-separated list of sort expressions. Each sort expression is a property name optionally followed by a direction indicator asc (ascending) or desc (descending).
The first sort expression in the list defines the primary sort order, the second defines the secondary sort order, and so on. If a direction indicator is omitted the default direction is ascending.
Supported fields are vlanId, name, status, ipv4Subnet and vlanType.
Denotes the maximum number of VLANs returned in the response.
Specifies the pagination cursor for the next page of resources.
Specifies the pagination cursor for the next page of resources.
Minimum value: 1
Response
Object containing information about the VLANs present in the gateway.
Example response
{
"items": [
{
"vlanId": 305,
"name": "Static - Vlan",
"vlanType": "Static",
"status": "Down",
"adminStatus": "Up",
"ipv4": "10.27.103.82",
"ipv4Subnet": "10.27.103.82/28",
"ipv4MaskAddr": "255.255.255.240",
"interfaces": "GE 0/0/1",
"id": "305",
"type": "network-monitoring/gateway-monitoring"
}
],
"count": 1,
"total": 1,
"next": null
}