musarehmani100's picture
Upload folder using huggingface_hub
3206347 verified
export default {
name: 'List lead labels',
key: 'listLeadLabels',
async run($) {
const leadLabels = {
data: [],
};
const { data } = await $.http.get(
`${$.auth.data.apiDomain}/api/v1/leadLabels`
);
if (data.data?.length) {
for (const leadLabel of data.data) {
const name = `${leadLabel.name} (${leadLabel.color})`;
leadLabels.data.push({
value: leadLabel.id,
name,
});
}
}
return leadLabels;
},
};