Actions13
Overview
The node integrates with the Crownpeak DQM CMS API to perform various operations related to content assets, websites, and checkpoints. Specifically, for the "Get Asset Content" operation, it retrieves the full content of a specified asset from the Crownpeak Digital Quality Management system.
This node is beneficial in scenarios where users need to programmatically access the content of web assets managed within Crownpeak DQM, such as for auditing, content migration, quality checks, or integration with other systems.
Example use case:
A user wants to fetch the HTML content of a particular webpage asset stored in Crownpeak DQM to analyze or transform it further in an automated workflow.
Properties
| Name | Meaning |
|---|---|
| Asset Identifier | The unique identifier of the asset whose content you want to retrieve. |
Output
The output is a JSON array where each item corresponds to the response from the Crownpeak DQM API for the requested asset content. The json field contains the full content of the specified asset as returned by the API.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Crownpeak DQM CMS API.
- Needs configuration of the base URL for the Crownpeak DQM API endpoint.
- The node uses HTTP requests to communicate with the Crownpeak API.
Troubleshooting
Common issues:
- Invalid or missing API key will cause authentication failures.
- Incorrect or non-existent asset identifiers will result in errors or empty responses.
- Network connectivity problems can prevent successful API calls.
Error messages:
"Unsupported operation"error indicates that the selected operation is not implemented or recognized by the node.- HTTP errors from the API (e.g., 404 Not Found) usually mean the asset ID does not exist or is inaccessible.
Resolutions:
- Verify that the API key credential is correctly set up and has necessary permissions.
- Double-check the asset identifier input for correctness.
- Ensure network access to the Crownpeak API endpoint is available.
Links and References
- Crownpeak DQM API Documentation (general reference; specific endpoints may vary)
- n8n documentation on HTTP Request node for understanding underlying request mechanics