action meraki_get_network_floor_plan { label: "Find a floor plan by ID" description: "Find a floor plan by ID" provider: meraki method: GET path: "/networks/{networkId}/floorPlans/{floorPlanId}" encoding: json input: { type: "object" properties: { floorPlanId: { type: "string" } networkId: { type: "string" } } required: ["floorPlanId", "networkId"] additionalProperties: false } output: { type: "object" } }