Zum Hauptinhalt springen
POST
/
customers
/
{id}
/
send-login-email
cURL
curl -X POST \
 /customers/{id}/send-login-email \
 --header "Authorization: Bearer <token>"
{
  "success": true
}
Sends an email to the customer containing a one-click login link to the customer portal.

Use Cases

  • Support: Help customers who have trouble logging in
  • Onboarding: Send a welcome email with direct portal access
  • Proactive Outreach: Remind customers to update payment methods or review invoices
The login link is valid for a limited time. If the customer doesn’t use it, they can request a new one from the login page.

Autorisierungen

Authorization
string
header
erforderlich

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Pfadparameter

id
string
erforderlich

Customer identifier

Antwort

Login email sent successfully to the customer

success
boolean
Beispiel:

true