Cisco Meraki LiveTools API

The LiveTools API from Cisco Meraki — 1 operation(s) for livetools.

OpenAPI Specification

cisco-meraki-livetools-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Cisco Meraki Dashboard Appliance LiveTools API
  description: 'RESTful API for managing and monitoring Cisco Meraki cloud networking

    across organizations, networks, devices, SSIDs, switch ports, security

    appliances, cameras, and clients. Authentication uses an API key passed

    via the X-Cisco-Meraki-API-Key header or as a Bearer token.

    '
  version: 1.0.0
  contact:
    name: Cisco Meraki Developer Hub
    url: https://developer.cisco.com/meraki/api-v1/
servers:
- url: https://api.meraki.com/api/v1
  description: Meraki Dashboard API v1
security:
- merakiApiKey: []
- bearerAuth: []
tags:
- name: LiveTools
paths:
  /devices/{serial}/liveTools/ping:
    parameters:
    - in: path
      name: serial
      required: true
      schema:
        type: string
    post:
      tags:
      - LiveTools
      summary: Enqueue a job to ping a target host from the device
      operationId: createDeviceLiveToolsPing
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                target:
                  type: string
                count:
                  type: integer
      responses:
        '201':
          description: Ping job enqueued
components:
  securitySchemes:
    merakiApiKey:
      type: apiKey
      in: header
      name: X-Cisco-Meraki-API-Key
    bearerAuth:
      type: http
      scheme: bearer