- Release Notes
- API Changelog
- Overview
- Generally Available
- v1.57.0
- v1.56.0
- v1.55.0
- v1.54.0
- v1.53.0
- v1.52.0
- v1.51.1
- v1.50.0
- v1.49.0
- v1.48.0
- v1.47.0
- v1.46.0
- v1.45.0
- v1.44.0
- v1.43.0
- v1.42.0
- v1.41.0
- v1.40.0
- v1.39.0
- v1.38.0
- v1.37.0
- v1.36.0
- v1.35.0
- v1.34.0
- v1.33.0
- v1.32.0
- v1.31.0
- v1.30.0
- v1.29.0
- v1.28.0
- v1.27.0
- v1.26.0
- v1.25.0
- v1.24.0
- v1.23.0
- v1.22.0
- v1.21.0
- v1.20.0
- v1.19.0
- v1.18.0
- v1.17.0
- v1.16.0
- v1.15.0
- v1.14.0
- v1.13.0
- v1.12.0
- v1.11.0
- v1.10.0
- v1.8.0
- v1.7.0
- v1.6.0
- v1.5.0
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.0
- v1.0.0
- v0.11.0
- v0.10.0
- v0.9.0
- v0.8.0
- v0.7.0
- v0.6.0
- v0.5.0
- v0.4.0
- v0.3.0
- v0.2.0
- Beta
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
Code SnippetCopy[ { "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
Code SnippetCopy{ "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
Code SnippetCopy{ "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
Code SnippetCopy{ "subscriptionId": "XY1234567", "networks": [ { "id": "L_1234", "name": "Corporate network" } ], "errors": [ "Insufficient licenses" ], "insufficientEntitlements": [ { "sku": "LIC-MS-400-L-A", "quantity": 5 } ] }