• Edit a label For get a new color, use await WPP.labels.getLabelColorPalette() to get the list of available colors

    Parameters

    • id: string
    • Optional options: EditLabelOptions

    Returns Promise<labels>

    Example

    await WPP.labels.editLabel(`Name of label`);
    //or
    await WPP.labels.editLabel(`Name of label`, { labelColor: '#dfaef0' });

    //or with color index await WPP.labels.editLabel(Name of label, { labelColor: 16 }); ```