I can’t fathom why this is so difficult. Hopefully I'm just missing something.
I need to extract the string values of a label type custom field. Is this even possible? More concretely, if my labels are: Alpha, Beta, Gamma, I simply want to get Alpha, Beta, and/or Gamma.
From the task data coming in, I can see and get the id of the labels, which is some unique string ClickUp generates in the background to identify the string value, but it seems by default you can’t just get the actual human readable string values?
That being the case, the next solution is to reverse engineer the string values by filtering the id’s extracted. In order to do that though, I need a simple mapping of the label’s “unique id’s → string values” (e.g, a1234 → Alpha), which does not seem to exist. I can get each of them individually, a collection of the unique id’s and a collection of the string values, but they’re not meaningfully mapped. I could potentially assume they’re ordered the same, but I don’t love that.
I'm happy to do this via a code step, but again, if I don’t have a good mapping of id → string values, my hands are tied. I happen to be doing this for a label type field, but I suspect I'd run into the same issue with a dropdown field as well.
Any solutions here?