Merchant Identification of the Payment Integrator in the interface Web Merchant Interface

A parameter LMI_SHOP_ID is present to direct the merchant to the address which the Payment Integrator accepts payments in the interface Web Merchant Interface .

It is intended only for the use by the Payment Integrators and must be passed in the form of payment request .

Soon it is presence will be mandatory. Accepting payments will be allowed only to the merchants that have been checked and verified by our moderators, i.e., merchants that are in MegaStock with a status "in the directory" or "hidden".

In the following cases below the requests will be rejected for payments to the purses of the integrator:

  • not containing the parameter LMI_SHOP_ID;
  • containing the LMI_SHOP_ID of a Not Approved or Blocked store in the catalogue;
  • containing the LMI_SHOP_ID of a store which receives its' funds via another purse or payment integrator.

If you use the Interface X20 (receiving a payment with SMS-confirmation) you are then required to specify this parameter in the same XML-tag.

The value of LMI_SHOP_ID is the number (numerical identifier) of the merchant in the MegaStock catalogue.

You can find it:

The information about the registered merchants in MegaStock is updated once a day in the database of the service Web Merchant Interface, so expect to start receiving payments addressed to the newly added merchant only after a set period of time for moderation and status update.

Example: Insertion of a parameter LMI_SHOP_ID in the form of payment request.

<html> 
<head>
 ... 
</head> 
<body> ...
<form method="POST" action="https://merchant.wmtransfer.com/lmi/payment.asp">
  ... 
  <input type="hidden" name="LMI_PAYMENT_AMOUNT" value="12.08">
  <input type="hidden" name="LMI_PAYMENT_DESC" value="test payment">
  <input type="hidden" name="LMI_PAYMENT_NO" value="1234">
  <input type="hidden" name="LMI_PAYEE_PURSE" value="Z145179295679">
  ...
  <input type="hidden" name="LMI_SHOP_ID" value="12345" />
  ... 
</form>
... 
</body>
</html>