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
This node operation creates a new lineup marker in the Basecamp system. A lineup marker is typically used to mark or label a specific date with a meaningful name, which can be useful for project planning, scheduling, or tracking important milestones within Basecamp projects.
Common scenarios include:
- Marking key dates such as deadlines, meetings, or events.
- Adding custom markers to track progress or phases in a project timeline.
- Automating the creation of timeline markers based on external triggers or workflows.
For example, you could use this node to automatically create a "Release Deadline" marker on a specific date whenever a new software version is scheduled.
Properties
| Name | Meaning |
|---|---|
| Name | The name of the lineup marker to create. This is a required string that identifies the marker. |
| Date | The date associated with the marker, formatted as an ISO8601 date string without the time part (e.g., "2024-06-01"). This specifies when the marker applies. |
Output
The node outputs JSON data representing the newly created lineup marker object as returned by the Basecamp API. This typically includes details such as the marker's ID, name, date, and any other metadata provided by the API.
No binary data output is involved.
Dependencies
- Requires an API authentication token credential configured in n8n to access the Basecamp API.
- The node uses the Basecamp API endpoint constructed with the user's Basecamp account ID.
- Proper permissions in Basecamp are necessary to create lineup markers.
Troubleshooting
- Invalid Date Format: If the date is not in ISO8601 format without time (e.g., "YYYY-MM-DD"), the API may reject the request. Ensure the date string is correctly formatted.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Verify that the API key or OAuth token is correctly set up.
- Permission Denied: If the user does not have rights to create lineup markers in the specified Basecamp project, the API will return an error.
- Network Issues: Connectivity problems can prevent the node from reaching the Basecamp API endpoint.
Links and References
- Basecamp API Documentation – Official API docs for understanding lineup markers and other resources.
- ISO 8601 Date Format – Explanation of the date format required for the
Dateproperty.