Actions68
- Recordings Actions
- Card Tables Actions
- Forwards Actions
- Events 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
Overview
This node operation retrieves detailed information about a specific "forward" entity within a given bucket (project) in the Basecamp system. It is useful when you need to fetch and work with data related to a particular forward, such as for auditing, reporting, or further processing in an automation workflow.
Practical examples include:
- Fetching the details of a forward to verify its status or properties before triggering subsequent actions.
- Integrating Basecamp forwards data into external systems or dashboards.
- Automating notifications or updates based on the forward's attributes.
Properties
| Name | Meaning |
|---|---|
| Bucket Id | The ID of the bucket (project) where the forward exists. This identifies the project context. |
| Forward Id | The unique ID of the forward to retrieve. |
Output
The output JSON contains the full details of the requested forward object as returned by the Basecamp API. This typically includes all metadata and properties associated with that forward, such as identifiers, timestamps, status, and any other relevant fields defined by the API.
The node does not output binary data.
Dependencies
- Requires an API key credential for authenticating with the Basecamp API.
- The node uses the Basecamp API endpoint constructed dynamically using the authenticated user's Basecamp account ID.
- Proper configuration of the API credentials in n8n is necessary for successful requests.
Troubleshooting
Common issues:
- Invalid or missing Bucket Id or Forward Id will cause the request to fail.
- Authentication errors if the API key or OAuth token is invalid or expired.
- Network connectivity problems can prevent reaching the Basecamp API.
Error messages:
- "Unauthorized" or "Authentication failed": Check and refresh your API credentials.
- "Not Found" or "404": Verify that the Bucket Id and Forward Id are correct and exist.
- "Bad Request": Ensure that the input parameters are valid numbers and properly set.
Resolving these usually involves verifying input values, refreshing credentials, and ensuring network access.
Links and References
- Basecamp API Documentation
- n8n Documentation on HTTP Request Nodes (for understanding API calls)