How to get Paytm seller id, customer id, channel id and industry type id?

I implemented paytm in my android app. But I do not know how to get Merchant id, customer id, channel idand industry type id.

paytm order code:

     Map<String, String> paramMap = new HashMap<String, String>();

            // these are mandatory parameters
            paramMap.put("REQUEST_TYPE", "DEFAULT");
            paramMap.put("ORDER_ID", String.valueOf(randomInt));
            paramMap.put("MID", "klbGlV59135347348753");
            paramMap.put("CUST_ID", "CUST123");
            paramMap.put("CHANNEL_ID", "WAP");
            paramMap.put("INDUSTRY_TYPE_ID", "Retail");

Thank. Please someone told me to do this.

+4
source share
1 answer

As mentioned in paytm docs "Note: CHANNEL_ID, INDUSTRY_TYPE_ID, MID and WEBSITE will be provided by Paytm upon registration."

This data will be provided by paytm representatives when checking all your documents.

0
source

Source: https://habr.com/ru/post/1599214/


All Articles