steampipe plugin install theapsgroup/clickup

Table: clickup_folderless_list

Obtain information about lists that aren't associated to folders within your ClickUp environment.

However you MUST specify a space_id 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

List lists for a space that are not associated with a folder.

select
id,
name,
order_index,
content,
status,
priority,
assignee,
task_count,
due_date,
start_date,
folder,
space,
archived
from
clickup_folderless_list
where
space_id = '7423465';

Schema for clickup_folderless_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_idtextUnique identifier of the folder the list belongs to.
idtextUnique 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_idtext=Unique 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.