Yourtext.Guru
Actions28
- Group Actions
- Guide Actions
- Project Actions
- SEO Txl Actions
Overview
The "Delete Group" operation in the Yourtext.Guru node allows users to delete an entire group within a specified project. This is useful for managing and organizing SEO content groups by removing obsolete or unwanted groups along with all their associated data. For example, if a marketing team finishes a campaign and no longer needs a particular group of SEO guides, they can use this operation to clean up their project workspace efficiently.
Properties
| Name | Meaning |
|---|---|
| Project ID | The unique identifier of the project containing the group to be deleted. |
| Group ID | The unique identifier of the group that you want to delete. |
Output
The output of this operation will typically be a JSON object returned from the API indicating the success or failure of the deletion request. It may include status codes or messages confirming that the group was deleted. There is no binary data output for this operation.
Example output structure (conceptual):
{
"success": true,
"message": "Group deleted successfully"
}
Dependencies
- Requires an active API key credential for Yourtext.Guru to authenticate requests.
- The node makes HTTP DELETE requests to the Yourtext.Guru API endpoint:
https://yourtext.guru/api/v2/projects/{projectId}/groups/{groupId} - Proper configuration of the API key credential in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or missing Project ID or Group ID will cause the API call to fail.
- Insufficient permissions or invalid API key may result in authorization errors.
- Attempting to delete a non-existent group will likely return a not found error.
Error messages and resolutions:
- 401 Unauthorized: Check that the API key credential is correctly set and has proper permissions.
- 404 Not Found: Verify that both Project ID and Group ID are correct and exist.
- 400 Bad Request: Ensure that the IDs are provided and formatted correctly.
Links and References
- Yourtext.Guru API Documentation: https://yourtext.guru/api-docs (general reference for API endpoints)
- n8n Documentation on HTTP Request Node: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/ (for understanding how API calls are made)