steampipe plugin install theapsgroup/clickup

Table: clickup_list

Obtain information about lists within your ClickUp environment.

However you MUST specify either an id (single) or folder_id (for multiple tasks) in the WHERE or JOIN clause.

Note: by default archived items won't be returned, to return archived items only set archived = true in the where clause.

Examples

Get a list by id

select
id,
name,
order_index,
content,
status,
priority,
assignee,
task_count,
due_date,
start_date,
folder,
space,
archived
from
clickup_list
where
id = '6fs7dfm';

List lists for a specific folder

select
id,
name,
order_index,
content,
status,
priority,
assignee,
task_count,
due_date,
start_date,
folder,
space,
archived
from
clickup_list
where
folder_id = 's6fsd8fds';

Schema for clickup_list

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
archivedboolean=Indicates if the list is archived.
assigneetextUsername of the user to whom the list is assigned.
assignee_emailtextEmail address of the user to whom the list is assigned.
assignee_idbigintUnique identifier of the user to whom the list is assigned.
contenttextContent description of the list.
due_datetimestamp with time zoneTimestamp when the list is due.
foldertextName of the folder the list belongs to.
folder_idtext=Unique identifier of the folder the list belongs to.
idtext=Unique identifier for the list.
nametextName of the list.
order_indexbigintOrder index of the list.
prioritytextPriority of the list.
spacetextName of the space the list belongs to.
space_idtextUnique identifier of the space the list belongs to.
start_datetimestamp with time zoneTimestamp when work on the list was started.
statustextStatus of the list.
statusesjsonbAn array of status objects for available statuses within the list.
task_counttextCount of tasks on the list.