Customerfront
The customerfront is the customer portal of the Fynn platform. The customerfront is superloaded with following features:
- View subscriptions
- Cancel subscriptions
- Manage payment methods
- Manage personal data
- View invoices
- Pay invoices
Access customerfront
The customerfront can be accessed by the following URL:
Sandbox: https://{username}.sandbox.customerfront.app
Production: https://{username}.customerfront.app
Login
There are two ways to login to the customerfront:
- The login to the customerfront is done by using a magic link. The magic link is sent to the email address of the debitor.
- A one-time link can be generated by using the API. This link can be used to login to the customerfront.
Generate one-time link
It is super easy to generate a one-time link. The following code snippet shows how to generate a one-time link:
<?php
use Fynn\Sdk\V1\Debitor\DebitorService;
$debitorService = new DebitorService($client);
$customerfrontLink = $debitorService->generateCustomerfrontLink($debitorId); // https://{username}.customerfront.app/login?token={token}