Dear All,
Can somebody share with me sample application to test merchant account created and plz explain it in step by step manner so that it will be easy to understand the payment mechanism using poynt system.
Dear All,
Can somebody share with me sample application to test merchant account created and plz explain it in step by step manner so that it will be easy to understand the payment mechanism using poynt system.
Please take a look at our sample app on github, specifically at https://github.com/poynt/PoyntSamples/blob/master/app/src/main/java/co/poynt/samples/SampleActivity.java#L85. When the charge button is clicked the launchPoyntPayment is called: https://github.com/poynt/PoyntSamples/blob/master/app/src/main/java/co/poynt/samples/SampleActivity.java#L368.
In general, the steps to launch payment flow on a Poynt terminal are:
Intent collectPaymentIntent = new Intent(Intents.ACTION_COLLECT_PAYMENT);
collectPaymentIntent.putExtra(Intents.INTENT_EXTRAS_PAYMENT, payment);
startActivityForResult(collectPaymentIntent, COLLECT_PAYMENT_REQUEST);