Activate/deactivate pipeline for a week
What this does: Toggles the active status of a pipeline week. When a week is marked as active, the planned tasks are automatically transferred to each team member’s personal stack (Kanban board) in the correct order. This is typically done after the weekly pipeline planning meeting when all tasks have been agreed upon.
How it works:
- Creates a PipelineMeta record if it doesn’t exist for the week (sets ready=true)
- If PipelineMeta already exists, toggles the ready boolean value
- The week is determined from the start date using ISO week numbering
- Dates should be in ISO format (YYYY-MM-DD)
Status meanings:
- 🟢 Active (ready=true): Current approved planning, tasks are visible in employee stacks
- 🟠 Inactive (ready=false): Draft for the upcoming week, still being planned
Required Permission: Pipeline.canChangeSettings
Use cases:
- Mark a week as active after completing weekly planning meetings
- Deactivate a week to make changes to the planning
- Automate the activation process as part of a planning workflow
/tasks/pipeline/statusAuthorizationOAuth2 access token · headerrequiredapi:writeAuthorizationBearer token (JWT) · headerrequiredapplication/jsondateEndstringrequiredEnd date of the pipeline week in ISO format (YYYY-MM-DD). Should match the end of the week period (typically 1-2 weeks from dateStart based on workspace settings).
dateStartstringrequiredStart date of the pipeline week in ISO format (YYYY-MM-DD). The week is determined from this date using ISO week numbering.
Pipeline status successfully toggled
successbooleanInvalid date format
Unauthorized - Invalid or missing authentication token
Missing required permissions