Forum Discussion
DamianMcc
3 years agoFrequent Visitor
Loop API call to obtain results based on single param change (from a list)
I am calling the ClickUp API to collect time sheet data from the "time_entries" endpoint. I can call the API for an individual user based on their user ID, this is passed in the URL paramiter. I ...
DamianMcc
3 years agoFrequent Visitor
I may have solved it with the help of exploring related articles.
Is this the best way?
let
Source = ClickUpAllUsers,
AddColumn =
Table.AddColumn(
Source,
"Custom",
each FxClickUpTimev2([ClickupId])
)
in
AddColumn