AvantGuard - SentinelOne icon

AvantGuard - SentinelOne

AvantGuard - SentinelOne

Actions682

Overview

This node operation retrieves credential groups from the Sentinel Deploy service via its Web API. It allows users to query and filter credential groups based on various criteria such as group name, target operating system, account or site IDs, and supports pagination and sorting. This is useful for security analysts or administrators who need to programmatically access and manage credential group information within Sentinel Deploy, for example, to audit credentials or integrate with other security tools.

Properties

Name Meaning
Additional Query Parameters Optional filters and controls for the API request, including pagination, sorting, filtering by group name, OS type, account or site IDs, and controlling the amount of data returned.

Output

JSON

  • data - Array of credential group objects returned by the API, each containing details about a credential group.
  • totalCount - Total number of credential groups matching the query, if count is requested.
  • cursor - Cursor token for fetching the next page of results if pagination is used.

Dependencies

  • Requires an API key credential for authenticating with the Sentinel Deploy API.
  • Depends on the '@avantguardllc/n8n-openapi-node' package for OpenAPI integration.

Troubleshooting

  • If the node returns authentication errors, verify that the API key credential is correctly configured and has necessary permissions.
  • If no results are returned, check the query parameters for correctness and ensure the filters match existing credential groups.
  • Pagination parameters like 'cursor' and 'skip' must be used correctly to iterate over large datasets; misuse may result in missing data.
  • API rate limits may cause request failures; consider adding delays or reducing request frequency.
  • Invalid JSON input in parameters like 'accountIds', 'siteIds', or 'ids' can cause request errors; ensure valid JSON arrays are provided.

Discussion