Actions18
- Content Plan Actions
- Document Actions
- Tool Actions
Overview
The "List All Documents" operation for the "Document" resource in this custom n8n node allows users to retrieve a paginated list of documents from Nichesss.com. This is useful for workflows that need to access, review, or process multiple documents stored on the Nichesss platform. For example, you might use this node to fetch all your content drafts for further analysis, reporting, or integration with other tools.
Properties
Name | Type | Meaning |
---|---|---|
Page | String | The page number of the document list to retrieve. Controls which set of documents is returned (for pagination). Default is "1". |
Output
- json: An array or object containing the list of documents retrieved from Nichesss.com for the specified page.
- Each item typically represents a document and may include fields such as document ID, title, content, creation date, etc. (Exact structure depends on the Nichesss API response.)
Dependencies
- External Service: Requires access to the Nichesss.com API at
https://nichesss.com/api
. - Credentials: May require a configured
nichesssApi
credential in n8n (though marked as not strictly required in the code). - n8n Configuration: No special environment variables are mentioned, but API credentials may be needed depending on your account setup.
Troubleshooting
Common Issues:
- Invalid or missing API credentials can result in authentication errors.
- Requesting a page number that does not exist may return an empty list or an error.
- Network issues or incorrect base URL configuration could prevent successful API calls.
Error Messages:
- 401 Unauthorized: Check your API credentials in n8n.
- 404 Not Found: The requested page may not exist; verify the "Page" property value.
- 500 Internal Server Error: There may be an issue with the Nichesss API service; try again later or contact support.
Links and References
- Nichesss.com
- n8n Documentation
- Nichesss API Documentation (if available)