action mist_get_org_jsi_devices { label: "getOrgJsiDevices" description: "Get all devices that connected to JSI" provider: mist method: GET path: "/api/v1/orgs/{org_id}/jsi/devices" encoding: json input: { type: "object" properties: { mac: { type: "string" } model: { type: "string" } serial: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { ext_ip: { type: "string" description: "when available" } last_seen: { type: "integer" } mac: { type: "string" } model: { type: "string" } serial: { type: "string" } } } } }