cURL
Authentication
Request a login link for the customer portal
Sends an email with a login link to the customer portal. The customer can click the link to access their portal without entering a password. Always returns success to prevent email enumeration.
POST
cURL
Public endpoint for customers to request a login link to the customer portal.Documentation Index
Fetch the complete documentation index at: https://docs.fynn.eu/llms.txt
Use this file to discover all available pages before exploring further.
How It Works
- Customer enters their email address on the login page
- An email with a login link is sent to the customer
- Customer clicks the link and is logged in automatically
This endpoint always returns
success: true to prevent email enumeration attacks. The email is only sent if the address matches an existing customer.Difference to OTP
This endpoint replaces the OTP (one-time password) flow for customer portal login. Instead of entering a 6-digit code, customers simply click a link in their email - a much smoother experience, especially on mobile devices. The OTP flow (/public/customer/request-otp and /public/customer/otp-login) is still available and used in the checkout flow where inline verification is required.Autorisierungen
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The customer email address
The email address of the customer
Beispiel:
"customer@example.com"
Antwort
200 - application/json
Login link request accepted. An email will be sent if the address matches a customer.
Beispiel:
true