Version 1.40.0 to 1.41.0


Summary of Changes

4 - New

5 - Updated

667 - Total operations

425 - Total Paths



What's Updated

[ devices ]

cellular

Updates the SIM and APN configurations for a cellular device.

PUT /devices/{serial}/cellular/sims

- Optional property timeout Added


[ appliance ]

vlans

List the VLANs for an MX network

GET /networks/{networkId}/appliance/vlans

- Response property additionalProperties value added

- Response property fixedIpAssignments value added


Return a VLAN

GET /networks/{networkId}/appliance/vlans/{vlanId}

- Response property additionalProperties value added

- Response property fixedIpAssignments value added


What's New

[ licensing ]

subscription

PATH /administered/licensing/subscription/subscriptions

- Path added

- New operation

List available subscriptions

GET /administered/licensing/subscription/subscriptions

[
    {
        "subscriptionId": "2345",
        "name": "Corporate subscription",
        "description": "A description",
        "status": "active",
        "startDate": "2027-06-30T00:00:00Z",
        "endDate": "2028-06-30T00:00:00Z",
        "webOrderId": "55598764",
        "productTypes": [
            "wireless"
        ],
        "entitlements": [
            {
                "sku": "LIC-MS-400-L-A",
                "seats": {
                    "assigned": 10,
                    "available": 15,
                    "limit": 25
                }
            }
        ],
        "counts": {
            "seats": {
                "assigned": 10,
                "available": 15,
                "limit": 25
            },
            "networks": 1
        }
    }
]


PATH /administered/licensing/subscription/subscriptions/claim

- Path added

- New operation

Claim a subscription into an organization.

POST /administered/licensing/subscription/subscriptions/claim

{
    "subscriptionId": "2345",
    "name": "Corporate subscription",
    "description": "A description",
    "status": "active",
    "startDate": "2027-06-30T00:00:00Z",
    "endDate": "2028-06-30T00:00:00Z",
    "webOrderId": "55598764",
    "productTypes": [
        "wireless"
    ],
    "entitlements": [
        {
            "sku": "LIC-MS-400-L-A",
            "seats": {
                "assigned": 10,
                "available": 15,
                "limit": 25
            }
        }
    ],
    "counts": {
        "seats": {
            "assigned": 10,
            "available": 15,
            "limit": 25
        },
        "networks": 1
    }
}


PATH /administered/licensing/subscription/subscriptions/claimKey/validate

- Path added

- New operation

Find a subscription by claim key. Returns 400 if the key has already been claimed.

POST /administered/licensing/subscription/subscriptions/claimKey/validate

{
    "subscriptionId": "2345",
    "name": "Corporate subscription",
    "description": "A description",
    "status": "active",
    "startDate": "2027-06-30T00:00:00Z",
    "endDate": "2028-06-30T00:00:00Z",
    "webOrderId": "55598764",
    "productTypes": [
        "wireless"
    ],
    "entitlements": [
        {
            "sku": "LIC-MS-400-L-A",
            "seats": {
                "assigned": 10,
                "available": 15,
                "limit": 25
            }
        }
    ],
    "counts": {
        "seats": {
            "assigned": 10,
            "available": 15,
            "limit": 25
        },
        "networks": 1
    }
}


PATH /administered/licensing/subscription/subscriptions/{subscriptionId}/bind

- Path added

- New operation

Bind networks to a subscription

POST /administered/licensing/subscription/subscriptions/{subscriptionId}/bind

{
    "subscriptionId": "XY1234567",
    "networks": [
        {
            "id": "L_1234",
            "name": "Corporate network"
        }
    ],
    "errors": [
        "Insufficient licenses"
    ],
    "insufficientEntitlements": [
        {
            "sku": "LIC-MS-400-L-A",
            "quantity": 5
        }
    ]
}