library
turbot/clickup
- Add Task to List
- Create Folder
- Create List
- Create Space
- Create Task
- Delete Folder
- Delete List
- Delete Space
- Delete Task
- Get Filtered Team Tasks
- Get Folder
- Get List
- Get List Members
- Get Space
- Get Task
- Get Task Members
- Get Lists
- List Folders
- List Spaces
- List Tasks
- List Teams
- Remove Task from List
- Update Folder
- Update Space
- Update Task
Get Involved
Version
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 |
---|---|---|---|---|
cred | string | Yes | Name for credentials to use. If not provided, the default credentials will be used. | 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. | - |
multiple_assignees | bool | Yes | Whether or not tasks in this space can have multiple assignees. |
|
due_dates | bool | Yes | Whether or not due dates are enabled for this space. |
|
start_date | bool | Yes | Whether or not start dates are enabled for this space. | - |
remap_due_dates | bool | Yes | Whether or not due dates should be remapped when moving tasks between lists. |
|
remap_closed_due_date | bool | Yes | Whether or not due dates should be remapped when closing tasks. | - |
time_tracking | bool | Yes | Whether or not time tracking is enabled for this space. | - |
tags | bool | Yes | Whether or not tags are enabled for this space. |
|
time_estimates | bool | Yes | Whether or not time estimates are enabled for this space. |
|
checklists | bool | Yes | Whether or not checklists are enabled for this space. |
|
custom_fields | bool | Yes | Whether or not custom fields are enabled for this space. |
|
remap_dependencies | bool | Yes | Whether or not dependencies should be remapped when moving tasks between lists. |
|
dependency_warning | bool | Yes | Whether or not a warning should be displayed when a task is dependent on another task. |
|
portfolios | bool | Yes | Whether or not portfolios are enabled for this space. |
|
Outputs
Name | Description |
---|---|
space | The newly created space. |
Tags
type = featured