Actions18
- Content Plan Actions
- Document Actions
- Tool Actions
Overview
The Create Blank Document operation for the "Document" resource in this n8n node allows users to create a new, empty document on Nichesss.com. This is useful for initializing documents that can later be filled with content or used as templates. Common scenarios include setting up structured documentation workflows, preparing blank forms for later population, or automating the creation of placeholder documents in content management processes.
Practical Example:
A marketing team could use this node to automatically generate blank campaign briefs for each new project, ensuring consistency and saving time on manual setup.
Properties
| Name | Type | Meaning |
|---|---|---|
| Name | String | The title or name of the document to be created (e.g., "Going to the Movies"). |
| About | String | A description explaining what the document is about (e.g., "Everything you need to know about going to the movies in 2023"). |
Output
The node outputs a json object containing details of the newly created blank document. While the exact structure depends on the Nichesss API response, it typically includes fields such as:
id: Unique identifier for the document.name: The name/title of the document.about: Description of the document.- Additional metadata provided by the API (such as timestamps or status).
Example output:
{
"id": "12345",
"name": "Going to the Movies",
"about": "Everything you need to know about going to the movies in 2023"
}
Dependencies
- External Service: Requires access to the Nichesss.com API.
- Credentials: May require an API key or credentials configured in n8n under the name
nichesssApi. - n8n Configuration: Ensure the node is properly authenticated and has network access to
https://nichesss.com/api.
Troubleshooting
- Missing Credentials: If the node fails due to authentication errors, ensure that the
nichesssApicredentials are correctly set up in n8n. - Required Fields: Both "Name" and "About" are required. Omitting either will result in validation errors.
- API Errors: If the Nichesss API returns an error (e.g., rate limits, invalid input), check the error message for guidance. Common issues include exceeding usage quotas or providing invalid data formats.