Interface CreateLabelData

Request body for creating a label.

interface CreateLabelData {
    color: string;
    description?: string;
    name: string;
}

Properties

color: string

Hex color code without # (e.g., 'f29513')

description?: string

Label description

name: string

Label name (required)