Actions2
Overview
This node interacts with the DeepIDV service to manage verification sessions. Specifically, the "List Sessions" operation retrieves a paginated list of verification sessions for a given organization. This is useful for scenarios where you want to monitor or audit active or past verification sessions within your organization.
Practical examples include:
- Fetching recent verification sessions to display in an admin dashboard.
- Automating reports on session activity.
- Integrating session data into other workflows for compliance or analytics.
Properties
| Name | Meaning |
|---|---|
| Organization ID | The unique identifier of the organization whose sessions you want to list (required). |
| Limit | Maximum number of session results to return (minimum 1). Defaults to 50. |
| Offset | Number of sessions to skip before starting to collect the result set. Useful for paging. |
Output
The output is an array of JSON objects, each representing a verification session retrieved from DeepIDV. Each item contains the session details as returned by the DeepIDV API's /session/list endpoint.
No binary data is output by this operation.
Dependencies
- Requires an API key credential for DeepIDV to authenticate requests.
- Makes HTTP GET requests to the DeepIDV API endpoint:
https://henzev2hp9.execute-api.us-east-1.amazonaws.com/dev/v1/verification/session/list - The node expects the API key to be configured in n8n credentials prior to execution.
Troubleshooting
- Missing API Key Error: If no API key is set, the node throws an error "No API key set for DeepIDV". Ensure that the DeepIDV API key credential is properly configured in n8n.
- Invalid Organization ID: Providing an incorrect or empty organization ID may result in API errors or empty results. Verify the organization ID is correct and non-empty.
- Pagination Issues: If the limit or offset parameters are set incorrectly (e.g., negative numbers), the API might reject the request or return unexpected results. Use positive integers for these fields.
- API Request Failures: Network issues or invalid API keys can cause request failures. Check connectivity and credential validity if errors occur.
Links and References
- DeepIDV API Documentation (Assumed URL; replace with actual if known)
- n8n Documentation on HTTP Request Node (for understanding underlying request mechanics)