Hello @Swahela Mulla ,
As per the Microsoft Graph service-specific throttling limits there is no Specific throttling Limit Published for that endpoint, so the throttling limit will fall under the Microsoft's Graph Global Throttling Limit as indicated on this doc -Microsoft Graph service-specific throttling limits.
To avoid throttling when triggering proactive remediation scripts on Intune-managed devices via the Microsoft Graph API, it's recommended to batch requests using JSON batching, add short delays between requests to reduce burst load, and implement robust retry logic based on the HTTP 429 error code. When throttling occurs, use the Retry-After
header to determine how long to wait before retrying the request, and continue retrying with the specified delay until the request succeeds. If no Retry-After
header is provided, apply an exponential backoff strategy. Avoid immediate retries and high-frequency polling patterns, as these can worsen throttling and degrade performance. Instead, use change tracking or notifications when available. - https://learn.microsoft.com/en-us/graph/throttling#best-practices-to-handle-throttling
Unfortunately, I could not find any official doc for handling bulk remediation triggers. But you can look at this doc for https://learn.microsoft.com/en-us/intune/intune-service/fundamentals/remediations which touches on running on demand Remedition Scripts.
If you find the answer above helpful, please Accept the answer to help anyone in the community who might have a similar question to quickly find the solution.