create-label
restish dci create-label
Creates a new label.
Request
Content-Type: application/json
Schema
{
"required": [
"name",
"color"
],
"type": "object",
"description": "Request body for creating a label.",
"properties": {
"name": {
"type": "string",
"description": "The name of the label."
},
"color": {
"type": "string",
"enum": [
"blue",
"skyBlue",
"teal",
"mint",
"lime",
"softYellow",
"apricot",
"lavender",
"purple",
"rosePink",
"slateGrey"
],
"description": "The color of the label."
}
}
}