Status
Update Many Status
API Documentation
Lead
- GETGet Lead
- GETGet Leads
- PATCHUpdate Lead
- POSTCreate Lead
- DELDelete Lead
- Actions
- Bulk Actions
Lists
Reminder (Task)
Status
Update Many Status
PATCH
/
status
/
update-many
curl --request PATCH \
--url https://api.breakcold.com/status/update-many \
--header 'Content-Type: application/json' \
--data '{
"status": [
{
"id": "<string>",
"order": 123,
"leads_order": [
"<string>"
],
"success_rate": 123,
"name": "<string>",
"color": "<string>"
}
]
}'
{
"updated_statuses": [
"status1_updated",
"status2_updated"
]
}
Query Parameters
ID of the space
Body
application/json
Response
200 - application/json
Successful response
The response is of type any
.
curl --request PATCH \
--url https://api.breakcold.com/status/update-many \
--header 'Content-Type: application/json' \
--data '{
"status": [
{
"id": "<string>",
"order": 123,
"leads_order": [
"<string>"
],
"success_rate": 123,
"name": "<string>",
"color": "<string>"
}
]
}'
{
"updated_statuses": [
"status1_updated",
"status2_updated"
]
}