library
turbot/clickup
OverviewPipelines
0
Triggers
0
Variables
GitHub

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>'

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>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesName for credentials to use. If not provided, the default credentials will be used.default
team_idnumberYesThe ID of the team where the space will be created.-
namestringYesThe name of the space you want to create.-
privateboolYesWhether or not the space should be private.
multiple_assigneesboolYesWhether or not tasks in this space can have multiple assignees.
due_datesboolYesWhether or not due dates are enabled for this space.
start_dateboolYesWhether or not start dates are enabled for this space.
remap_due_datesboolYesWhether or not due dates should be remapped when moving tasks between lists.
remap_closed_due_dateboolYesWhether or not due dates should be remapped when closing tasks.
time_trackingboolYesWhether or not time tracking is enabled for this space.
tagsboolYesWhether or not tags are enabled for this space.
time_estimatesboolYesWhether or not time estimates are enabled for this space.
checklistsboolYesWhether or not checklists are enabled for this space.
custom_fieldsboolYesWhether or not custom fields are enabled for this space.
remap_dependenciesboolYesWhether or not dependencies should be remapped when moving tasks between lists.
dependency_warningboolYesWhether or not a warning should be displayed when a task is dependent on another task.
portfoliosboolYesWhether or not portfolios are enabled for this space.

Outputs

NameDescription
spaceThe newly created space.

Tags

type = featured