Connect Secure icon

Connect Secure

Consume Connect Secure API

Actions222

Overview

This node interacts with the Connect Secure API to retrieve mappings of agent credentials. Specifically, the "Retrieve Agent Credentials Mapping" operation fetches credential data associated with agents based on user-defined query parameters such as filtering conditions, pagination, and sorting.

Common scenarios for this node include:

  • Integrating Connect Secure credential data into workflows for auditing or reporting.
  • Automating retrieval of agent credential mappings to synchronize with other systems.
  • Filtering and paginating large sets of credential mappings to process them in batches.

For example, a user might want to retrieve all credential mappings for a specific user ID, skip the first 10 records, limit the results to 50, and order them by creation date.

Properties

Name Meaning
X USER ID User Id header value required for authentication or identification in the API request.
Condition Query condition string to filter the retrieved credential mappings.
Skip Number of records to skip (for pagination).
Limit Maximum number of records to return.
Order By Field name(s) to order the results by.

Output

The node outputs JSON data representing the retrieved agent credentials mapping from the Connect Secure API. The structure typically includes an array of credential mapping objects matching the query parameters.

If binary data were involved, it would be summarized here, but this node focuses on JSON output only.

Dependencies

  • Requires an API key credential for authenticating with the Connect Secure API.
  • Depends on the Connect Secure API being accessible and properly configured.
  • No additional environment variables are explicitly required beyond the API credential.

Troubleshooting

  • Missing or invalid X USER ID: The API requires the X USER ID header; ensure it is provided and correct.
  • Invalid query parameters: Incorrect syntax in the Condition, or invalid values for Skip, Limit, or Order By may cause errors or empty results.
  • API connectivity issues: Network problems or incorrect API credentials will prevent successful data retrieval.
  • Empty results: If no mappings match the query, the output will be empty; verify the query condition and parameters.

Links and References

Discussion