У нас вы можете посмотреть бесплатно Android Paytm Digital wallet Payment Integration for OTP/TOTP(1-3)- Part 2 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Checksum Integration CheckSumServiceHelper checkSumServiceHelper = CheckSumServiceHelper.getCheckSumServiceHelper(); checkSumServiceHelper.generateChecksum("AesKey",”body”); ●AesKey is shared by wallet team after creating new merchant. It’s unique across merchants. ●Body contains the json request It will return checksum hash which needs to be added to the header as value of key “checksumhash”. Merchant id needs to be provided as value of key “mid”. Wallet API Following URL has to be used for staging and production with all the below given for different calls. Checksumhash is used in every API call and can be calculated by checksum utility which will be provided seperately. MID and Merchant GUID are same and same value is to be sent in both the parameters walletweb : https://trust.paytm.in/ Staging URL: http://trustuat.paytm.in/ Withdraw Money API (POST Call) This API is used to withdraw money. .URL: /wallet-web/v7/withdraw Headers: phone=Mobile no of user otp=Time based Otp for offline user Common HTTP headers across all api calls. ContentType: application/json ssotoken:oauth token of merchant or checksumhash: ## Checksum Hash ## mid: ## Merchant ID ## Request : {"request": { "totalAmount": "10", "currencyCode": "INR", "merchantGuid": "125FD26C4D9811E2B20CE89A8FF309EA", "merchantOrderId": "ORDER1", “industryType”:””, “posId”:” ”, “comment”:””, "uniqueReferenceLabel": "PNR-Number", "uniqueReferenceValue": "PNR-17865", "invoiceDetails": { "headerName": [ "ItemName", "Rate", "Quantity", "Amount" ], "itemDetails": [ [ "chips", "80", "2", "160" ] ], "taxDetails": [ { "rowname": "Total","rowvalue": "660" }, { "rowname": "Service Tax @14.5%", "rowvalue": "40" }, { "rowname": "Swatch Bharat Tax @1.5%", "rowvalue": "12" }, { "rowname": "VAT@5%", "rowvalue": "20" }, { "rowname": "Advance", "rowvalue": "100" }, { "rowname": "Discount", "rowvalue": "700" } ], "otherDetails": [ { "rowname": "Get 50% cashback on paying via Paytm", "rowvalue": "" } ] } },"platformName": "PayTM", "ipAddress": "192.168.40.11", "operationType": "WITHDRAW_MONEY", “channel”:”POS”, “version”:”1.0 ” }1.Success : For Successful withdraw money from user wallet { "requestGuid": null, "orderId": null, “status” :”SUCCESS” "statusCode": "SUCCESS", "statusMessage": "SUCCESS", "response": { “walletSystemTxnId” : “1234” “heading” : “content if required”, “payeeSsoId”=null, “cashBackStatus”=SUCCESS/FAILURE, “cashBackMessage”=SUCCESS/FAILURE }, "metadata": null }