v1

latestOpenAPI 3.0.32026-07-248519153.1 KB

Send authentication link to user

Send an authentication link email to a user. The email can use custom templates if a subscription with custom email is provided.

post/user/send_auth_link

Headers

api_keystring required

API key for authentication

Request body

email_tostring email required

Email address to send the authentication link to

user_idstring nullable

User ID (GUID). If provided, must exist in the project's user properties

subscription_idinteger nullable

Optional subscription ID. If provided and the subscription's price has custom email enabled, the custom email template will be used

Example request

{
  "email_to": "user@example.com",
  "user_id": "c1409762-d624-4a47-a330-2a21d108b681",
  "subscription_id": 3064
}

Response

Authentication link sent successfully

successinteger

Example response

{
  "success": 1
}