steampipe plugin install theapsgroup/clickup

Table: clickup_goal

Obtain information about folders within your ClickUp environment.

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

Examples

Get a specific goal by id

select
id,
pretty_id,
name,
team_id,
folder_id,
date_created,
start_date,
due_date,
date_updated,
private,
archived,
pinned,
percent_complete
from
clickup_goal
where
id = 'v47b5vb'

List goals for a specific team

select
id,
pretty_id,
name,
team_id,
folder_id,
date_created,
start_date,
due_date,
date_updated,
private,
archived,
pinned,
percent_complete
from
clickup_goal
where
team_id = '46446546'

Schema for clickup_goal

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
archivedbooleanIndicates if the goal is archived.
colortextThe color associated with the goal.
creator_idbigintIdentifier for the user whom created the goal.
date_createdtimestamp with time zoneTimestamp when the goal was created.
date_updatedtimestamp with time zoneTimestamp when the goal was last updated.
descriptiontextTextual description of the goal.
due_datetimestamp with time zoneTimestamp when the goal is due.
folder_idtextidentifier for the folder of the goal.
idtext=Unique identifier for the goal.
multiple_ownersbooleanIndicates if the goal has/supports multiple owners.
nametextThe name of the given goal.
owner_emailtextEmail address for the user designated as the owner of the goal.
owner_idbigintIdentifier for the user designated as the owner of the goal.
owner_usernametextUsername of the user designated as the owner of the goal.
ownersjsonbAn array of owners if multiple owners are assigned to the goal.
percent_completeddouble precisionNumeric representation of how complete the goal is.
pinnedbooleanIndicates if the goal is pinned.
pretty_idtextPretty identifier for the goal.
privatebooleanIndicates if the goal is private.
start_datetimestamp with time zoneTimestamp when work on the goal was started.
team_idtext=Identifier for the team to which the goal is assigned.