Actions19
Overview
The "Folder - Get Many" operation in this node retrieves multiple folders from the Autentique API, which is a digital signature platform. This operation allows users to list folders that organize documents within their account or organization. It is useful for scenarios where you want to display, manage, or process batches of folders programmatically, such as syncing folder structures, generating reports, or automating document management workflows.
For example, a user might want to fetch all folders to show them in a custom dashboard or to select a folder when moving documents between folders.
Properties
| Name | Meaning |
|---|---|
| Limit | Maximum number of folder results to return. Minimum value is 1. Defaults to 50. |
| Page | The page number of results to retrieve, starting at 1. Defaults to 1. |
Output
The output JSON contains the following structure:
total: Total number of folders available.data: An array of folder objects, each containing:id: Unique identifier of the folder.name: Name of the folder.created_at: Timestamp of when the folder was created.
Example snippet of output JSON:
{
"total": 100,
"data": [
{
"id": "folder_12345",
"name": "Contracts 2024",
"created_at": "2024-01-15T12:34:56Z"
},
{
"id": "folder_67890",
"name": "Invoices",
"created_at": "2023-11-20T08:22:10Z"
}
]
}
This output enables downstream nodes or workflows to process folder metadata for further automation or display.
Dependencies
- Requires an API key credential for authenticating with the Autentique API.
- The node uses the base URL
https://api.autentique.com.br/v2and communicates via GraphQL POST requests. - Proper configuration of the API authentication credential in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing API credentials will cause authentication failures.
- Requesting a page number beyond the available pages may return empty data arrays.
- Setting the limit below 1 will be rejected due to minimum value constraints.
Error messages:
- Authentication errors typically indicate invalid or expired API keys; verify and update credentials.
- GraphQL errors may occur if the query variables are malformed; ensure
limitandpageare numbers and within valid ranges. - Network errors could indicate connectivity issues; check network access to the Autentique API endpoint.
Links and References
- Autentique API Documentation (official API docs, for more details on folders and other resources)
- GraphQL Basics (to understand the query structure used by the node)