tie_deviances_bulk
Fetch all active Identity Exposure deviances across all checkers in a few paginated API calls, simplifying remediation workflows that would otherwise require per-checker queries.
Instructions
Fetch all IoE deviances in a few paginated calls (bulk alternative to per-checker fan-out).
Uses GET /api/deviances/changed with cursor pagination to pull deviances across all checkers at once — typically 1–5 API calls instead of one call per checker (~64). This is the recommended starting point for remediation-plan workflows.
Deviances include checkerId and adObjectId (numeric ID, not display name). Use tie_checkers_summary to map checkerId → checker name, and tie_search_ad_objects to resolve adObjectId → object name if needed.
Args: profile_id: Filter to a specific profile id (client-side). None = include all profiles. resolved: Include resolved/closed deviances (default False = active only). batch_size: Records per API page (default 200). max_batches: Safety cap on pagination loops (default 20 = up to 4000 records).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| resolved | No | ||
| batch_size | No | ||
| profile_id | No | ||
| max_batches | No |