resp is ok, but test 2 doent adding, when I’m trying to update a color of label it doesnt work neither
[
{
“color”: “blue”,
“label”: “VIP”,
“id”: 80
},
{
“color”: “purple”,
“label”: “топ55”,
“id”: 154
},
{
“color”: “red”,
“label”: “test update”,
“id”: 159
}
]
resp ok, color or name doesnt changing
When you want to update a color or name of a deal field, the data needs to be sent as an object which contains the options property, for example:
{
“options”: [
{
“color”: “green”,
“label”: “Customer”,
“id”: 1
},
{
“color”: “red”,
“label”: “Hot lead”,
“id”: 2
},
{
“color”: “yellow”,
“label”: “Warm lead”,
“id”: 3
},
{
“color”: “blue”,
“label”: “Cold lead”,
“id”: 4
}
]
}