Cancel url for payment providers
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Cancel url for payment providers
Aimeos: 2022.10
PHP: 8.1
My payment provider requires a cancel URL, which is a link where customers are redirected if they cancel the selected payment method. I failed to find such a parameter "payment.url-cancel" returns null. I need them to be redirected back to the order, so they can choose a different option of payment.
PHP: 8.1
My payment provider requires a cancel URL, which is a link where customers are redirected if they cancel the selected payment method. I failed to find such a parameter "payment.url-cancel" returns null. I need them to be redirected back to the order, so they can choose a different option of payment.
Re: Cancel url for payment providers
It's the same as "payment.url-success" because the payment gateway must redirect to the order confirmation page so the Aimeos payment service provider can set the status of the order to "canceled".
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Cancel url for payment providers
Im having same issue...for my case the payment provider requires cancel, success, notification urls...could you give an example of a url i can give to my payment provider?
Re: Cancel url for payment providers
Success and cancel URLs are:
e.g.:
Notify URL are for example:
The URLs depends on your route prefixes, etc.
Please have a look at the output of:
Code: Select all
https://laravel.demo.aimeos.org/shop/confirm/<payment service code>
Code: Select all
https://laravel.demo.aimeos.org/shop/confirm/demo-invoice
Code: Select all
https://laravel.demo.aimeos.org/update
Please have a look at the output of:
Code: Select all
php artisan route:list
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Cancel url for payment providers
Thank you so much admin