steampipe plugin install theapsgroup/clickup

Table: clickup_list_member

Obtain information about members of a list within your ClickUp environment.

You MUST specify a list_id in the WHERE or JOIN clause.

Examples

List all members of a specific list

select
id,
username,
email,
color,
profile_picture,
initials
from
clickup_list_member
where
list_id = '9429v3v2390'

Schema for clickup_list_member

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
colortextThe color associated with the user.
emailtextEmail address of the user.
idbigintUnique Identifier of the user.
initialstextInitials of the user.
list_idtext=Identifier for the list the user is a member of.
profile_picturetextURL of the profile picture for the user.
usernametextUsername of the user.