AvantGuard - SentinelOne icon

AvantGuard - SentinelOne

AvantGuard - SentinelOne

Actions682

Overview

This node updates recipient settings via a web API call to the SentinelOne service. It is designed to modify recipient data such as email and ID, filtered by site and account IDs. This is useful for administrators who need to programmatically manage notification recipients or user settings within SentinelOne environments.

Properties

Name Meaning
Data The recipient data to update, provided as a JSON object. Typically includes fields like email and id that specify the recipient details to be modified.
Filter A JSON object specifying filtering criteria to target specific sites and accounts for the update operation. Contains arrays of siteIds and accountIds to scope the update.

Output

JSON

  • response - The JSON response from the SentinelOne API after performing the update operation, containing status and details of the updated recipients.

Dependencies

  • Requires an API key credential for SentinelOne (avantguardSentinelOneApi) to authenticate requests.
  • Relies on the '@avantguardllc/n8n-openapi-node' package and the SentinelOne OpenAPI specification for request construction.

Troubleshooting

  • Ensure the 'Data' and 'Filter' JSON inputs are correctly formatted and valid JSON strings; parsing errors will cause the node to fail.
  • Verify that the API credentials are correctly configured and have sufficient permissions to update recipient settings.
  • Check that the siteIds and accountIds in the filter exist and are accessible by the authenticated user to avoid authorization errors.
  • Common errors may include HTTP 400 for malformed requests or HTTP 401/403 for authentication/authorization failures; reviewing API response messages can help diagnose issues.

Discussion