Payzln¶
At Pay Zillion, we understand that managing payments can be complex and time-consuming. That’s why we’ve built a payment gateway that seamlessly processes payments, giving you the freedom to focus on what matters most – growing your business.
Website: payzln.com## Set up Account Provider account
Step 1: Create Provider account¶
To create an account send connection request at the payzln.com → Contact Us or contact manager directly. Submit the required documents to verify your account and gain access.
Step 2: Get required credentials¶
Credentials that have to be issued:
- payzln__app_id → APP ID
- payzln__app_secret → APP Secret
- payzln__api_url → API URL
- payzln__test_mode → Test mode
Connect Provider Account¶
Step 1. Connect Provider account at the Corefy Dashboard¶
Press Connect at Payzln Provider Overview page in 'New connection' section and choose Provider account option to open Connection form.
Enter credentials:
- APP ID
- APP Secret
- API URL
- Test mode → true/false
Success
You have connected Payzln Provider account!
API examples:¶
Minimum data set to create a payment invoices for upi_inr_hpp service¶
This request will be valid if the Customers list on the dashboard is filled
PAYMENT
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"upi_inr_hpp",
"commerce_account":"Hello World",
"currency":"INR",
"amount":34,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"33333"
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"6ea08f48-9e42-4ebb-aeab-28716c96c075",
"service_fields":[
]
}
}
}
Minimum data set to create a payment invoices for upi_inr_hpp service¶
This request will be valid if the Constants on the dashboard are populated
PAYMENT
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"upi_inr_hpp",
"commerce_account":"Hello World",
"currency":"INR",
"amount":34,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"e62cda7f-6d4c-490b-8602-7f821abd6f99"
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"8fef37d2-31a8-4309-94ae-ce83cacff4f3",
"service_fields":[
]
}
}
}
Maximum data set to create a payment invoices for invoice service¶
PAYMENT
POST /api/commerce/payment-invoices HTTP/1.0
{
"data":{
"type":"payment-invoice",
"attributes":{
"service":"upi_inr_hpp",
"commerce_account":"Hello World",
"currency":"INR",
"amount":34,
"flow":"charge",
"gateway_options":{
"cardgate":{
"tokenize":""
}
},
"customer":{
"reference_id":"e62cda7f-6d4c-490b-8602-7f821abd6f99",
"name":"John Wick",
"email":"[email protected]",
"phone":"380631111111"
},
"test_mode":true,
"options":{
"allow_partially":false,
"bypass_hpp":false,
"send_operation_context_on_return":false
},
"reference_id":"8fef37d2-31a8-4309-94ae-ce83cacff4f3",
"service_fields":[
]
}
}
}
Constants¶
If some parameters are not sent in the transaction creation request, they will take the values from the set constants.
Here is a list of constants with their corresponding parameters:
- FIRST_NAME → customer [first_name]
- EMAIL → customer [email]
- PHONE → customer [phone]
Question
"Still looking for help connecting your Payzln account?" Please contact our support team!