curl --request PUT \
--url https://api.surefeedback.com/api/v1/boards/labels/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"color": "<string>",
"icon_name": "<string>",
"description": "<string>"
}
'{
"success": true,
"data": {
"id": "label-001",
"name": "Critical Bug",
"color": "#DC2626"
}
}
Update an existing board label.
curl --request PUT \
--url https://api.surefeedback.com/api/v1/boards/labels/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"color": "<string>",
"icon_name": "<string>",
"description": "<string>"
}
'{
"success": true,
"data": {
"id": "label-001",
"name": "Critical Bug",
"color": "#DC2626"
}
}
{
"success": true,
"data": {
"id": "label-001",
"name": "Critical Bug",
"color": "#DC2626"
}
}
Was this page helpful?