Skip to content

MngUpdateLead

Updates lead fields. lead_id is required.

Access Control

Requires CRM access and set_customers. Both the current lead and the target updated brand / desk must be inside the manager scope. If the request changes email or phone, set_customer_contacts is also required. If the manager does not have see_customer_contacts, contact fields in the response are masked.

Request

{
  "command": "MngUpdateLead",
  "extID": "1",
  "data": {
    "lead_id": 1,
    "manager_id": 10,
    "status": 1
  }
}

Response Data

{
  "lead": {
    "lead_id": 1,
    "manager_id": 10,
    "status": 1
  }
}