action mist_get_msp_inventory_by_mac { label: "getMspInventoryByMac" description: "Get Inventoy By device MAC address" provider: mist method: GET path: "/api/v1/msps/{msp_id}/inventory/{device_mac}" encoding: json output: { type: "object" required: ["mac", "model", "org_id", "serial", "site_id", "type"] properties: { for_site: { type: "boolean" } mac: { type: "string" } model: { type: "string" } org_id: { type: "string" format: "uuid" } serial: { type: "string" } site_id: { type: "string" format: "uuid" } type: { type: "string" } } } }