Actions76
- Campfire Actions
- Card Table Actions
- Chatbot Actions
- Client Approval Actions
- Client Correspondence Actions
- Client Reply Actions
- Client Visibility Actions
- Comment Actions
- Document Actions
- Event Actions
- Forward Actions
- Inbox Actions
- Inbox Reply Actions
- Lineup Marker Actions
- Message Actions
- Message Board Actions
- Message Type Actions
- Person Actions
- Project Actions
- Question Actions
- Question Answer Actions
- Questionnaire Actions
- Recording Actions
Overview
This node interacts with the Basecamp API to retrieve detailed information about a specific card within a project’s card table. It is useful when you need to fetch data about a particular card identified by its unique ID and the project (bucket) it belongs to. Typical use cases include automating workflows that require accessing card details for project management, reporting, or integration with other tools.
For example, you might use this node to:
- Retrieve the status or content of a task card in a project.
- Fetch card metadata to update dashboards or send notifications.
- Integrate card information into custom reports or analytics pipelines.
Properties
Name | Meaning |
---|---|
Project ID | The numeric ID of the project (also called bucket) where the card resides; used in the API path. |
Card ID | The numeric ID of the card to retrieve; used in the API path. |
Return Full Response | Boolean option to return the entire HTTP response including status code and headers instead of just the response body. |
Output
The node outputs JSON data representing the card's details as returned by the Basecamp API. This typically includes all properties of the card such as title, description, status, assigned users, creation date, and any other metadata provided by the API.
If the "Return Full Response" property is enabled, the output will include the full HTTP response object containing:
- Status code
- Headers
- Body (the card data)
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the Basecamp API using OAuth2 authentication.
- The node expects the user to provide valid project and card IDs.
- Proper API credentials must be configured in n8n to authenticate requests.
Troubleshooting
- Invalid Project or Card ID: If the provided IDs do not exist or are incorrect, the API will likely return a 404 error. Verify the IDs before running the node.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Ensure the OAuth2 credentials are correctly set up and authorized.
- API Rate Limits: Excessive requests may trigger rate limiting by Basecamp. Implement retry logic or reduce request frequency if needed.
- Return Full Response Confusion: Enabling "Return Full Response" changes the output structure. Make sure downstream nodes handle the full response format accordingly.