Files
Anthropic-Cybersecurity-Skills/skills/implementing-mobile-application-management/references/api-reference.md
T
mukul975 c21af3347e Complete folder anatomy for all 649 cybersecurity skills + update LICENSE to Mahipal
- Add scripts/agent.py and references/api-reference.md to all remaining skills
- Update all 648 LICENSE files: copyright now reads 'Mahipal'
- Add implementing-security-monitoring-with-datadog (new skill with full anatomy)
- All 649 skills now have: SKILL.md, LICENSE, scripts/agent.py, references/api-reference.md
2026-03-11 00:22:12 +01:00

1.3 KiB

API Reference: Implementing Mobile Application Management

Microsoft Intune MAM API (Graph)

import requests
headers = {"Authorization": "Bearer <token>"}
# List MAM policies
policies = requests.get(
    "https://graph.microsoft.com/v1.0/deviceAppManagement/managedAppPolicies",
    headers=headers).json()
# List managed apps
apps = requests.get(
    "https://graph.microsoft.com/v1.0/deviceAppManagement/managedAppRegistrations",
    headers=headers).json()

MAM Policy Settings

Setting Recommended Description
pinRequired true Require app PIN
encryptAppData true Encrypt app data
dataBackupBlocked true Block iCloud/Google backup
screenCaptureBlocked true Block screenshots
managedBrowserRequired true Force managed browser
maxPinRetries 5 Wipe after failures

Conditional Launch Settings

Condition Action Value
Jailbreak/root Block true
Min OS version Warn/Block 16.0
Offline wipe Wipe 30 days
Max PIN retries Wipe 5

References