library
turbot/clickup
Get Involved
Version
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
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.clickup | Yes | Name of ClickUp connection to use. If not provided, the default ClickUp connection will be used. | connection.clickup.default |
team_id | number | Yes | The ID of the team where the space will be created. | - |
name | string | Yes | The name of the space you want to create. | - |
private | bool | Yes | Whether or not the space should be private. | false |
multiple_assignees | bool | Yes | Whether or not tasks in this space can have multiple assignees. | true |
due_dates | bool | Yes | Whether or not due dates are enabled for this space. | true |
start_date | bool | Yes | Whether or not start dates are enabled for this space. | false |
remap_due_dates | bool | Yes | Whether or not due dates should be remapped when moving tasks between lists. | true |
remap_closed_due_date | bool | Yes | Whether or not due dates should be remapped when closing tasks. | false |
time_tracking | bool | Yes | Whether or not time tracking is enabled for this space. | false |
tags | bool | Yes | Whether or not tags are enabled for this space. | true |
time_estimates | bool | Yes | Whether or not time estimates are enabled for this space. | true |
checklists | bool | Yes | Whether or not checklists are enabled for this space. | true |
custom_fields | bool | Yes | Whether or not custom fields are enabled for this space. | true |
remap_dependencies | bool | Yes | Whether or not dependencies should be remapped when moving tasks between lists. | true |
dependency_warning | bool | Yes | Whether or not a warning should be displayed when a task is dependent on another task. | true |
portfolios | bool | Yes | Whether or not portfolios are enabled for this space. | true |
Outputs
Name | Description |
---|---|
space | The newly created space. |
Tags
recommended = true