MngUpdateCustomerStatus¶
Updates a customer status dictionary record. id is required.
Access Control¶
Requires CRM access and set_customers. Both the current status and the target updated brand must be inside the manager brand scope. Updating global statuses with empty brand requires admin scope or an unscoped manager.
Request¶
{
"command": "MngUpdateCustomerStatus",
"extID": "1",
"data": {
"id": 1,
"status_name": "Verified",
"sort": 20
}
}
Response Data¶
{
"customer_status": {
"id": 1,
"status_name": "Verified",
"sort": 20
}
}