MicrosoftAtpScIndicatorCreate
A polling wrapper script; creates a new indicator in Microsoft Defender for Endpoint.
python · Microsoft Defender for Endpoint
Details
| ID | MicrosoftAtpScIndicatorCreate |
|---|---|
| Language | python |
| From Version | 6.1.0 |
| Docker Image | demisto/python3:3.12.13.10116658 |
| Tags | Utilities |
import demistomock as demisto # noqa: F401 from CommonServerPython import * # noqa: F401 def main(): args = demisto.args() try: return_results(execute_polling_command("microsoft-atp-sc-indicator-create", args)) except Exception as e: return_error(f"Failed to execute script.\nError:\n{e!s}") if __name__ in ("__main__", "__builtin__", "builtins"): main()