Skip to content

New API Endpoints and a bug fix for processing org IDs

Latest
Compare
Choose a tag to compare
@tejashah88 tejashah88 released this 09 Jun 04:21

New API Endpoints

Clients - dashboard.clients

  • get - Retrieve a client either by client ID, MAC or IP address.
  • usageHistory - Retrieve the client's daily usage history. Usage data is in kilobytes.
  • trafficHistory - Retrieve the client's network traffic data over time. Usage data is in kilobytes.
  • events - Retrieve a client's events.
  • securityEvents - Retrieve a client's security events.

Bluetooth Clients - dashboard.bluetooth_clients

  • list - List the Bluetooth clients seen by APs in this network.
  • get - Retrieve a Bluetooth client.

Meraki Auth - dashboard.meraki_auth

  • list - List the splash or RADIUS users configured under Meraki Authentication for a network.
  • get - Retrieve the specified splash or RADIUS user.

Personal Identifying Information - dashboard.pii[organizations/networks]

Applies for both organizations and networks.
  • list - List the keys required to access PII for a given identifier.
  • getDeviceId - Given a piece of PII, retrieve the Systems Manager device ID(s) associated with that identifier.
  • listSMOwners - Given a piece of PII, retrieve the Systems Manager owner ID(s) associated with that identifier.
  • listRequests - List the PII requests for an organization/network.
  • getRequest - Return a PII request for an organization/network.
  • submitRequest - Submit a new delete or restrict processing PII request.
  • deleteRequest - Delete a restrict processing PII request.

Bug fixes

  • Fixed a bug where org IDs longer than 16 digits would have their trailing digits be set to zero upon being parsed to JSON. This was due to how javascript handles integers larger than 253 - 1.