Tue, 02/02/2016 - 04:22
#1
Recurring base payment
Can we set recurring payment using time period base monthly base.
how can i integrate recurring payment?
i refer this link https://developer.payeezy.com/payeezy-api/apis/post/transactions/%7Bid%7D-1
any demo according to recurring payment.please provide demo
Thank you
Maulik - Unfortunately at this time, there is no way to create a recurring plan using our APIs. The link that you shared is limited to Apple pay only for now in which you can submit transactions in an incremental manner upto a limit of 200% of the initial authorization value. Example: If the authorization amount is $100, then the total amount captured can be a maximum of $200.
I'm confused. Are you saying that there is no way to set up a recurring bill using an API call? In the docs: https://developer.payeezy.com/payeezy-api/apis/post/transactions-3 Credit Card Payments there is a "recurring" option: "transaction_type": "recurring",hence the confusion. Can you explain that transaction_type or provide links to understand how to use this?
I was assuming based on the above that this transaction_type = recurring, means that you can save the FDToken and subsequently use it every time the subscription payment is due. Is that not correct? If not, then what is the purpose of transaction_type=recurring?
When setting transaction_type to recurring it's just for interchange/fee purposes. The basic process flow is below
• You submit a $0 pre-authorization via API or through Payeezy.JS with the card details.
• Our response contains the assigned Transarmor Token number in place of the credit card number
• You store the token on an external application/database
• You then submit a purchase transaction with the Token number, card expiration, cardholder name, and credit card type based on the frequency you set in your coding
Can we update the recurring amount?
We want to integrate recurring payment for Subscription on our website.
We've tried to run API using "transaction_type": "recurring" and transaction was successful on sandbox mode.
Now how can we charge user on monthly,yearly basis?
Can we also update the recurring amount on Payeezy? Please confirm as we didn't got any documentation for above.
You can initiate recurring transactions via API if you utilize tokenization. This would not add transactions to the Payeezy Gateway’s recurring system and your application would be responsible for handling the logic of sending purchase transactions to the gateway along with the frequency, amount etc. The basic process flow is below.
• You submit a $0 pre-authorization via API with the card details.
• Our response contains the assigned Transarmor Token number in place of the credit card number
• You store the token on an external application/database
• You then submit a purchase transaction with the Token number, card expiration, cardholder name, and credit card type based on the frequency you set in your coding
https://support.payeezy.com/hc/en-us/articles/203731209-Using-TransArmor-Tokens-on-Self-Service-DEMO-for-Testing
Hi,
Is there way to check this recurring payment approach ?
If the transactions are processed using the Developer APIs/Direct APIs you can configure a webhook URL and use the event search API to pull the event object data. To set up a webhook go to 'merchants' and click 'view details'. The URL entered must use port 80 or 443.