Skip to content

MngGetLead

Returns full lead data by lead_id.

Access Control

Requires CRM access and see_customers. Lead brand and desk must be inside the manager scope. If the manager does not have see_customer_contacts, email and phone are returned masked.

Request

{
  "command": "MngGetLead",
  "extID": "1",
  "data": {
    "lead_id": 1
  }
}

Response Data

{
  "lead": {
    "lead_id": 1,
    "brand": "default",
    "full_name": "Anna Test",
    "email": "[email protected]",
    "phone": "+442000000000",
    "status": 0
  }
}