Authentication
Signing the request
Request content is either query string of URL (parameters after ? sign) for GET queries and POST queries without body, or body of POST request if present.
clientId is used for authentication of user, while clientSecret for authorization and signatures
For example we will use the folowing clientId and clientSecret
Public ID
X-LP-clientId
It is used to identify the API of the Payment system.
Secret key
signature
It is used to sign API Requests of the Payment System.
Withdrawal request using HMAC-SHA256
Create P2P offer request using HMAC-SHA256
We can improve the security of the signed requests by passing additional parameters timestamp and recvWindow to the query string. In this case they should be included in the sigature along with other paramaters.
Last updated