Version 1.55.0 to 1.56.0


Summary of Changes

2 - New

55 - Updated

799 - Total Endpoints

539 - Total Paths



What's Changed

[ licensing ]

subscription

List available subscriptions

GET /administered/licensing/subscription/subscriptions

- Param organizationIds became required


What's Updated

[ switch ]

routing

List layer 3 interfaces for a switch

GET /devices/{serial}/switch/routing/interfaces

- Optional param mode added

- Optional param protocol added

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added

- Response property mode value added

- Response property switchPortId value added


Return a layer 3 interface for a switch

GET /devices/{serial}/switch/routing/interfaces/{interfaceId}

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added

- Response property mode value added

- Response property switchPortId value added


Create a layer 3 interface for a switch

POST /devices/{serial}/switch/routing/interfaces

- Property vrf Deleted

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added


Update a layer 3 interface for a switch

PUT /devices/{serial}/switch/routing/interfaces/{interfaceId}

- Property vrf Deleted

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added


stacks

List layer 3 interfaces for a switch stack

GET /networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added

- Response property mode value added

- Response property switchPortId value added


Return a layer 3 interface from a switch stack

GET /networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added

- Response property mode value added

- Response property switchPortId value added


Create a layer 3 interface for a switch stack

POST /networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added


Update a layer 3 interface for a switch stack

PUT /networks/{networkId}/switch/stacks/{switchStackId}/routing/interfaces/{interfaceId}

- Property vrf Deleted

- Optional property mode Added

- Optional property switchPortId Added


[ appliance ]

vpn

Return the site-to-site VPN settings of a network

GET /networks/{networkId}/appliance/vpn/siteToSiteVpn

- Optional property nat Added

- Optional property subnet Added

- Response property nat value added

- Response property subnet value added


Update the site-to-site VPN settings of a network

PUT /networks/{networkId}/appliance/vpn/siteToSiteVpn

- Optional property nat Added

- Optional property subnet Added

- Optional property nat Added

- Optional property subnet Added


[ camera ]

qualityRetentionProfiles

Creates new quality retention profile for this network.

POST /networks/{networkId}/camera/qualityRetentionProfiles

- Optional property MV53X Added


Update an existing quality retention profile for this network.

PUT /networks/{networkId}/camera/qualityRetentionProfiles/{qualityRetentionProfileId}

- Optional property MV53X Added


[ networks ]

clients

Return the client associated with the given identifier

GET /networks/{networkId}/clients/{clientId}

- Optional property recentDeviceName Added

- Optional property recentDeviceSerial Added

- Response property recentDeviceName value added

- Response property recentDeviceSerial value added


syslogServers

List the syslog servers for a network

GET /networks/{networkId}/syslogServers

- Property encryption Deleted


Update the syslog servers for a network

PUT /networks/{networkId}/syslogServers

- Property encryption Deleted

- Property encryption Deleted


[ wireless ]

ssids

Modify the splash page settings for the given SSID

PUT /networks/{networkId}/wireless/ssids/{number}/splash/settings

- Optional property selfRegistration Added


[ cellularGateway ]

esims

The eSIM inventory of a given organization.

GET /organizations/{organizationId}/cellularGateway/esims/inventory

- Response property properties value added


What's New

[ appliance ]

firewall

PATH /networks/{networkId}/appliance/firewall/multicastForwarding

- Path added

- New endpoint

Update static multicast forward rules for a network

PUT /networks/{networkId}/appliance/firewall/multicastForwarding

{
    "network": {
        "id": "N_24329156",
        "name": "Main Office"
    },
    "rules": [
        {
            "description": "test",
            "address": "224.0.0.1",
            "vlanIds": [
                "1"
            ]
        }
    ]
}


PATH /organizations/{organizationId}/appliance/firewall/multicastForwarding/byNetwork

- Path added

- New endpoint

List Static Multicasting forwarding settings for MX networks

GET /organizations/{organizationId}/appliance/firewall/multicastForwarding/byNetwork

{
    "items": [
        {
            "network": {
                "id": "N_24329156",
                "name": "Main Office"
            },
            "rules": [
                {
                    "description": "test",
                    "address": "224.0.0.1",
                    "vlanIds": [
                        "1"
                    ]
                }
            ]
        }
    ],
    "meta": {
        "counts": {
            "items": {
                "total": 1,
                "remaining": 0
            }
        }
    }
}