Subversion Repositories SmartDukaan

Rev

Rev 36240 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36240 Rev 36256
Line 199... Line 199...
199
        queryParams.put("serviceType", "otp");
199
        queryParams.put("serviceType", "otp");
200
        queryParams.put("password", PASS);
200
        queryParams.put("password", PASS);
201
        queryParams.put("username", USER);
201
        queryParams.put("username", USER);
202
        //OTP Message Template
202
        //OTP Message Template
203
 
203
 
204
        String response = restClient.post(NEXG_API_ENDPOINT, queryParams, new HashMap<>(), new HashMap<>());
204
        String response = restClient.get(NEXG_API_ENDPOINT, queryParams, new HashMap<>());
205
        LOGGER.info("LOI_ACCEPTANCE_OTP_Response - " + response);
205
        LOGGER.info("LOI_ACCEPTANCE_OTP_Response - " + response);
206
        return response;
206
        return response;
207
 
207
 
208
    }
208
    }
209
 
209