You need to have the PayNL Magento 2 module and the PayNL Magento 2 GraphQL module installed and configured within your Magento 2 installation.
composer require rapidez/paynl
Because the payment endpoints require authentication we use justbetter/laravel-magento-client The folowing .env variables need to be set:
MAGENTO_BASE_URL=${MAGENTO_URL}
# See: https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-token/#integration-tokens
MAGENTO_ACCESS_TOKEN=
By default the access token is used as bearer token, to use oauth for this instead see the authentication section
Only the Paynl_Payment::graphql_capture
(GraphQL - Capture) resource access is required.
You can publish the views with:
php artisan vendor:publish --provider="Rapidez\Paynl\PaynlServiceProvider" --tag=views
If you want to enable the pin terminal dropdown you will have to add the following snippet
pay_issuers {
id
name
}
to the available_payment_methods
field in rapidez/core/resources/views/cart/queries/fragments/cart.graphql
GNU General Public License v3. Please see License File for more information.