Actions80
- Card Tables Actions
- Forwards Actions
- Events Actions
- Recordings Actions
- Projects Actions
- People Actions
- Chatbots Actions
- Webhooks Actions
- Attachments Actions
- Templates Actions
- Uploads Actions
- Documents Actions
- Lineup Markers Actions
- Subscriptions Actions
- Schedules Actions
- Schedule Entries Actions
- Todo Sets Actions
- Todo Lists Actions
- Todos Actions
Overview
The node provides functionality to unarchive a specific recording within a project bucket. This is useful in scenarios where recordings have been previously archived for storage or organizational purposes and need to be restored to active status for review, editing, or further processing.
For example, if a user has archived several meeting recordings but later needs to access one of them again, this node can be used to unarchive that particular recording by specifying its identifiers.
Properties
| Name | Meaning |
|---|---|
| Bucket Id | ID of the project bucket containing the recording. Must be a number. |
| Recording Id | ID of the recording to unarchive. Must be a number. |
Output
The node outputs JSON data representing the result of the unarchive operation on the specified recording. This typically includes details about the recording's updated status or metadata confirming it is no longer archived.
No binary data output is indicated.
Dependencies
- Requires an API key credential or similar authentication token configured in n8n to authorize requests.
- Depends on the external service managing recordings and buckets (likely a project management or media storage API).
- The base URL for API requests is dynamically constructed using credentials (e.g., a Basecamp-like service), so proper credential configuration is necessary.
Troubleshooting
Common issues:
- Invalid or missing Bucket Id or Recording Id will cause the operation to fail.
- Authentication errors if the API key or token is not set up correctly.
- Network or permission errors if the user does not have rights to modify the recording.
Error messages:
- "Unauthorized" or "Authentication failed": Check API credentials and permissions.
- "Recording not found": Verify the provided Bucket Id and Recording Id are correct.
- "Operation not permitted": Ensure the user has sufficient privileges to unarchive recordings.
Links and References
- Refer to the external API documentation for managing recordings and buckets.
- n8n documentation on setting up API credentials and using HTTP request nodes for custom integrations.