Skip to content

MngGetCustomerByLogin

Returns the customer linked to a trading account login.

If account has customer_id = 0, the method returns not found.

Request

{
  "command": "MngGetCustomerByLogin",
  "extID": "1",
  "data": {
    "login": 100001
  }
}

Response Data

{
  "customer": {
    "customer_id": 1,
    "email": "[email protected]",
    "full_name": "John Smith"
  }
}