1. Guides
Pinddpay
  • Guides
    • Integration Instructions
    • Signature
  • Payin
    • Create order session
      POST
    • Create a transaction
      POST
    • Query a transaction
      GET
    • Webhook
  • Payout
    • Create a payout
      POST
    • Query balance
      GET
    • Webhook
  • Subscription
    • Card
      • Cancel subscription
      • Webhook
  • Other
    • Enums
    • Test cards
  1. Guides

Signature

Header#

NameTypeRequiredComment
accessKeystringYContact us to provide
timestampstringYCurrent timestamp, accurate to seconds
noncestringYFor random numbers, It is recommended to use long integers to reduce the probability of duplicates occurring within a short period of time.
signstringYSignature string

Signature Algorithm#

Tip: Our company will provide the accessSecret mentioned below
Sort the parameters in the request in the following order, concatenating them with & (without spaces):
method: needs to be capitalized, such as: POST
url :
Remove the protocol, domain name, and parameters, and prefix them with a /, such as: /api/test/hello
Use the HMAC-SHA256 protocol to create a Hash-based Message Authentication Code (HMAC), using the accessSecret as the key. Calculate the signature of the concatenated parameters and encode the resulting signature in Base-64.
HMAC-SHA256 online calculation:https://1024tools.com/hmac
Example:
屏幕截图_19-1-2025_233424_1024tools.com.jpeg

Demo#

java
php
C#
修改于 2025-11-19 10:54:51
上一页
Integration Instructions
下一页
Create order session
Built with