Releases: Mangopay/mangopay2-php-sdk
3.12.0
Added
Instant payment eligibility check
With the function
PayOuts->CheckInstantPayoutEligibility($params);
the destination bank reachability can now be verified prior to making an instant payout. This results in a better user experience, as this preliminary check will allow the platform to propose the instant payout option only to end users whose bank is eligible.
3.11.0
Fixed
We are now compatible with psr/log 1 to psr/log 3.
3.10.0
Added
We are now providing new hooks for our new feature Instant payouts :
- INSTANT_PAYOUT_SUCCEEDED
- INSTANT_PAYOUT_FALLBACKED
It will allow you to trigger an action depends on the Instant Payout treatment.
3.9.0
Added
You can now change the status to "ENDED" for a recurring payment.
Fixed
- "Status" is now available in the response when you request a recurring payment registration.
- Fix recurring PayIn CIT / MIT create methods return doctype
3.8.0
Added
Payconiq
As requested by numerous clients, we are now providing Payconiq as a new mean-of-payment. To request access, please contact MANGOPAY.
Flags for KYC documents
We provide more information regarding refused KYC documents. Therefore it will be easier for you to adapt your app behavior and help your end user.
You are now able to see the exact explanation thanks to a new parameter called “Flags”.
It has been added to
MangoPay::KycDocument.fetch(new_natural_user['Id'], new_document['Id'])
It will display one or several error codes that provide the reason(s) why your document validation has failed. These error codes description are available here.
3.7.1
Fixed
- Better support of more PHPUnit versions
- Cleanup the vendor bundle, to reduce the size of the SDK
Thanks williamdes for your help
3.7.0
Fixed
- ChargeDate has been added for PayInPaymentDetailsDirectDebit
- Change
FallbackReason
parameter's type to object in PayOutPaymentDetailsBankWire
Added
- You can now update and view a Recurring PayIn Registration object. To know more about this feature, please consult the documentation here.
- To improve recurring payments, we have added new parameters for CIT : DebitedFunds & Fees. To know more about this feature, please consult the documentation here
3.6.0
Added
We have added a new feature recurring payments dedicated to clients needing to charge a card repeatedly, such as subscriptions or payments installments.
You can start testing in sandbox, to help you define your workflow. This release provides the first elements of the full feature.
- Create a Recurring PayIn Registration object, containing all the information to define the recurring payment
- Initiate your recurring payment flow with an authenticated transaction (CIT) using the Card Recurring PayIn endpoint
- Continue your recurring payment flow with an non-authenticated transaction (MIT) using the Card Recurring PayIn endpoint
This feature is not yet available in production and you need to contact the Support team to request access.
3.5.0
Added
Instant payment
Mangopay has introduced few months ago the instant payment mode. It allows payouts (transfer from wallet to user bank account) to be processed within 25 seconds, rather than the 48 hours for a standard payout.
We have added a new feature in the PHP SDK. You can now verify the mode applied to an instant payment.
$payOutGet = $this->_api->PayOuts->GetBankwire($payOut->Id);
// where $payOut->Id is the id of an existing payout
Please note that this feature must be authorized and activated by MANGOPAY. More information here.
Accepted PRs
- Improved documentation around ubo declaration reason
- ResponseError object improvement
3.4.2
Bug fixes