Payment request
Our API now enables you to create payment requests easily. To initiate a request, make a call to the following endpoint: https://api.tranzila.com/v1/pr/create.
Payment requests generated via TRAPI can be sent via email, SMS, or both.
Detailed explanation regarding the authentication header parameters can be found in authentication
| Header | Note |
|---|---|
| X-tranzila-api-app-key | Application key supplied by Tranzila |
| X-tranzila-api-request-time | Request time sent in Unix format (large integer counting milliseconds from Jan 1 st , 1970 00:00:00 |
| X-tranzila-api-nonce | A 40 bytes NONCE – unique random string generated with any random bytes function |
| X-tranzila-api-access-token | hash_hmac using ‘sha256’ on application key with secret + request-time + nonce. hash_hmac is available for all programming languages with samples found here: https://www.jokecamp.com/blog/examples-of-creating-base64-hashes-using-hmac-sha256-in-different-languages/ |