Preview which devices a filter matches
Preview the devices a filter would match, without persisting anything. Build the filter from the /device-groups/filters-options catalog; an invalid filter is rejected with 400. Use this to confirm a target before creating a device group.
Authorizations
Use your Primo API key in the Authorization header as Bearer <API_KEY>.
Body
Device filter. An object keyed by criterion key (from the /device-groups/filters-options catalog); each value is a clause { operationType: "INCLUDE" | "EXCLUDE", values: string[] } — never a bare array. Add top-level matchAny: true for OR across clauses. Example: { "platform": { "operationType": "INCLUDE", "values": ["MACOS"] } }.