Actions100
- Activity Logs Actions
- Articles Actions
- Asset Layouts Actions
- Asset Passwords Actions
- Assets Actions
- Get Assets
- Get Companies Company Id Assets
- Post Companies Company Id Assets
- Get Companies Company Id Assets Id
- Put Companies Company Id Assets Id
- Delete Companies Company Id Assets Id
- Put Companies Company Id Assets Id Archive
- Put Companies Company Id Assets Id Unarchive
- Put Companies Company Id Assets Id Move Layout
- Cards Actions
- Companies Actions
- Expirations Actions
- Exports Actions
- Folders Actions
- IP Addresses Actions
- Lists Actions
- Magic Dash Actions
- Matchers Actions
- Networks Actions
- Password Folders Actions
- Procedure Tasks Actions
- Procedures Actions
- Public Photos Actions
- Rack Storage Items Actions
- Rack Storages Actions
- Relations Actions
- Uploads Actions
Overview
This node operation unarchives a specific article by its ID. It is useful in scenarios where articles that were previously archived need to be restored and made active again, such as content management systems or knowledge bases where archived articles can be reactivated for editing or publishing.
For example, if an article was archived due to being outdated but later needs to be updated and republished, this operation allows you to unarchive it by specifying its unique identifier.
Properties
Name | Meaning |
---|---|
Id | The unique numeric identifier of the article to unarchive |
Output
The output will contain JSON data representing the result of the unarchive operation on the specified article. This typically includes confirmation of the article's status change and may include the article's details after unarchiving.
If the node supports binary data output, it would represent any associated files or media related to the article, but based on the provided code and context, the primary output is JSON.
Dependencies
- Requires an API key credential for authentication with the AvantGuard WebhookSite service.
- The node uses the base URL configured in the credentials to send requests.
- Depends on the
@avantguardllc/n8n-openapi-node
package and an OpenAPI specification (openapi.json
) bundled with the node for request building.
Troubleshooting
Common issues:
- Providing an invalid or non-existent article ID will likely result in an error response from the API.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues to the configured base URL can prevent the operation from completing.
Error messages:
- Authentication errors indicating invalid or missing API keys require checking the credential configuration.
- "Article not found" or similar errors suggest verifying the article ID input.
- Timeout or connection errors indicate network problems or incorrect base URL settings.
Links and References
- AvantGuard WebhookSite API Documentation (example placeholder link)
- n8n Documentation on Creating Custom Nodes