library
turbot/clickup
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Create Space

Add a new Space to a Workspace.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run clickup.pipeline.create_space \
--arg 'team_id=<number>' \
--arg 'name=<string>' \
--arg 'private=<bool>' \
--arg 'start_date=<bool>' \
--arg 'remap_closed_due_date=<bool>' \
--arg 'time_tracking=<bool>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = clickup.pipeline.create_space
args = {
team_id = <number>
name = <string>
private = <bool>
start_date = <bool>
remap_closed_due_date = <bool>
time_tracking = <bool>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.clickup
YesName of ClickUp connection to use. If not provided, the default ClickUp connection will be used.connection.clickup.default
team_id
number
YesThe ID of the team where the space will be created.-
name
string
YesThe name of the space you want to create.-
private
bool
YesWhether or not the space should be private.false
multiple_assignees
bool
YesWhether or not tasks in this space can have multiple assignees.true
due_dates
bool
YesWhether or not due dates are enabled for this space.true
start_date
bool
YesWhether or not start dates are enabled for this space.false
remap_due_dates
bool
YesWhether or not due dates should be remapped when moving tasks between lists.true
remap_closed_due_date
bool
YesWhether or not due dates should be remapped when closing tasks.false
time_tracking
bool
YesWhether or not time tracking is enabled for this space.false
tags
bool
YesWhether or not tags are enabled for this space.true
time_estimates
bool
YesWhether or not time estimates are enabled for this space.true
checklists
bool
YesWhether or not checklists are enabled for this space.true
custom_fields
bool
YesWhether or not custom fields are enabled for this space.true
remap_dependencies
bool
YesWhether or not dependencies should be remapped when moving tasks between lists.true
dependency_warning
bool
YesWhether or not a warning should be displayed when a task is dependent on another task.true
portfolios
bool
YesWhether or not portfolios are enabled for this space.true

Outputs

NameDescription
spaceThe newly created space.

Tags

recommended = true