openapi: 3.1.0 info: title: Cisco Meraki Dashboard Appliance 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: Appliance paths: /networks/{networkId}/appliance/vlans: parameters: - in: path name: networkId required: true schema: type: string get: tags: - Appliance summary: List the VLANs for an MX network operationId: getNetworkApplianceVlans responses: '200': description: List of VLANs post: tags: - Appliance summary: Add a VLAN operationId: createNetworkApplianceVlan requestBody: required: true content: application/json: schema: type: object responses: '201': description: Created VLAN components: securitySchemes: merakiApiKey: type: apiKey in: header name: X-Cisco-Meraki-API-Key bearerAuth: type: http scheme: bearer