TransfersmileTransfersmile
  • EN
  • PT
  • ES
  • EN
  • PT
  • ES
  • Introduction
  • Payin API
    • Environments
    • Direct integration
      • Brazil
        • Credit Card
        • Pix
        • Lottery
        • Boleto
        • Deposit Express
        • Wallet
    • Notification
      • Security
    • Payin Detail
    • Refund
    • Plug-in & Tools
      • transfersmile JavaScript
      • transfersmile SDK
      • Get CreditCard Token
      • Supported Bank List Query
      • Installment Detail Query
    • Data
      • Payment Method
      • Data for test (Sandbox)
      • Payin Status
      • Icon of methods
    • API Code
  • Payout API
    • Environments
    • Security
    • Submit a payout
      • transfersmile Wallet
        • WebView Example
        • H5 Authorization
        • Native App Authorization
        • Send Prizes
      • Brazil
        • Pix
        • BankTransfer
    • Notification
    • Payout DryRun
    • Account Balance
    • Payout Status
    • Payout List
    • Payout Detail
    • Payment Method
    • Data for test
    • Bank Code
      • Bank in Brazil
    • API Code

H5 Authorization

H5 application get user authorization

1. Provide the authorization link to users.

The authorization link is concatenated with Basic URL+notify_url+reference_id+source+sign_key

ParameterExplainationExample value
notify_urlthe url that used to receive notificationhttps://www.transfersmile.com
reference_idmerchant user's id. Defined by merchant20220101123
sourcea string which can recognize the merchanttransfersmile
sign_keya key used for verifying signature. Defined by merchanttest_key

Tip

Don't put # sign in the URL

Test environment

Basic URL

https://sandbox-wallet.transfersmile.com/authenticationH5?

Example:

https://sandbox-wallet.transfersmile.com/authenticationH5?notify_url=https://www.transfersmile.com&reference_id=1234567&source=abc&sign_key=test_key

Live environment

Basic URL

https://wallet.transfersmile.com/authenticationH5?

Example:

https://wallet.transfersmile.com/authenticationH5?notify_url=https://www.transfersmile.com&reference_id=1234567&source=abc&sign_key=test_key

Users will be redirected to this page to authorize.

2. Users authorize and the merchant gets UUID.

After users authorized on the page from Step 1. Users will be redirected to the notification page. The page URL will be concatenated with notify_url+merchant_user_id+pagsmile_id+phone_number+sign

ParameterExplainationExample
merchant_user_idthe reference_id is provided in step 1.​
pagsmile_iduser's UUID​
phone_numberphone number​
signsignature generated with sign key. sign_key is provided in step 1.​

Signature rule:

let param = 'merchant_user_id=' + reference_id + '&pagsmile_id=' + uuid + '&phone_number' + phone_number;
let sign = param + '&key=' + sign_key;
sign = md5(md5(sign));

Example of the URL of notification page

https://www.transfersmile.com/?merchant_user_id=1234567&pagsmile_id=b5e8b5d94bbafdd7be8d91e784a7413d&phone_number=177****1868&sign=4b7841cf03c6011d2137b99a20f82d61

​ 3. Merchant needs to link merchant's user ID with the UUID of transfersmile wallet. Then users can be redirected to the other page as needed.

Prev
WebView Example
Next
Native App Authorization