The Payum extension for EveryPay payment gateway integration.
Install using Composer :
composer require ergosarapu/payum-everypay- Create notify token without payment model identity. If using Symfony, this can be done as follows:
php bin/console payum:security:create-notify-token everypay
- Configure notification callback in EveryPay merchant portal with the generated URL
- Register CallbackNotificationIdentityResolverExtension with the gateway. This extension resolves the payment model identity based on the
payment_reference.
Authorize initiates the payment, but does not capture it. Note that depending on capture delay setting on the EveryPay account used, the authorization may result the payment to be still captured immediately.
Initiates payment to capture immediately. Also captures previously authorized payment.
To request token for later use in MIT/CIT payments, you may create and register extension in your gateway to set token_agreement, request_token, token_consent_agreed values.
See example extension here: SetRequestTokenAgreementExtension
To perform CIT or MIT payment, you may create and register extension in your gateway to set _type, token_agreement, token_details values.
See example extension for CIT: PrepareForCitPaymentExtension
See example extension for MIT: PrepareForMitPaymentExtension
TODO: Not yet supported