Skip to content

MngGetCustomer

Returns one customer by customer_id.

Access Control

Requires CRM access and see_customers. The customer brand and desk must be inside the manager scope. Admin scope bypasses this check.

If the manager does not have see_customer_contacts, email and phone are returned masked.

Request

{
  "command": "MngGetCustomer",
  "extID": "1",
  "data": {
    "customer_id": 1
  }
}

Response Data

{
  "customer": {
    "customer_id": 1,
    "email": "[email protected]",
    "phone": "+35700000000",
    "full_name": "John Smith",
    "status": 0,
    "deposit_allowed": 1,
    "withdrawal_allowed": 1
  }
}