Actions18
- Content Plan Actions
- Document Actions
- Tool Actions
Overview
The Delete Content in Plan operation for the Content Plan resource in this custom n8n node allows users to remove a specific content item from an existing content plan on Nichesss.com. This is useful for managing and updating content strategies, ensuring that outdated or incorrect content can be efficiently deleted from a plan.
Common scenarios:
- Removing obsolete or irrelevant content from a scheduled content plan.
- Correcting mistakes by deleting wrongly added content items.
- Keeping content plans up-to-date and organized.
Practical example:
A marketing manager wants to remove a blog post draft from their monthly content plan after deciding not to publish it. They use this node to delete the specific content item from the plan directly within their n8n workflow.
Properties
| Name | Type | Meaning |
|---|---|---|
| Content Plan ID | String | The unique identifier of the content plan from which content will be deleted. |
| Content ID | String | The unique identifier of the content item to be deleted from the plan. |
Output
The output will typically be a JSON object indicating the result of the deletion operation. While the exact structure depends on the Nichesss API response, you can expect fields such as:
{
"success": true,
"message": "Content deleted successfully",
"content_plan_id": "yxz",
"content_id": "abc123"
}
If the node supports binary data, it is not relevant for this operation.
Dependencies
- External Service: Requires access to the Nichesss.com API.
- Credentials: May require
nichesssApicredentials to authenticate requests (as indicated in the node's description). - n8n Configuration: Ensure the node is properly configured with the correct API base URL (
https://nichesss.com/api) and necessary headers.
Troubleshooting
Common issues:
- Invalid Content Plan ID or Content ID: If either ID is incorrect or does not exist, the API may return an error such as "Content not found" or "Invalid ID".
- Missing Credentials: If authentication is required and credentials are missing or invalid, you may see errors like "Unauthorized" or "Authentication failed".
- Network Issues: Errors related to connectivity, such as "Request timed out" or "Unable to reach Nichesss.com".
How to resolve:
- Double-check that both the Content Plan ID and Content ID are correct and exist in your Nichesss account.
- Ensure that valid API credentials are set up in n8n.
- Verify network connectivity and that the Nichesss API is accessible.