Skip to main content
Altcraft Docs LogoAltcraft Docs Logo
User guideDeveloper guideAdmin guide
Company siteHelp center
English
  • Русский
  • English
v74
  • v74
  • v73
  • v72
Login
  • Getting Started
  • Administrator documentation
  • Functional characteristics
  • Technology description
  • System requirements
  • Admin Panel
  • Platform installation
  • Platform configuration
  • Platform maintenance
  • Custom channels guide
  • Extra
  • Processing HTTP/HTTPS traffic
  • Administrator API
    • Accounts admin api
    • Account users
      • Update an Existing Account
      • Add a new account
      • Delete a user
      • Get a list of users
      • Sending a Welcome Email
    • Nodes
    • Senders admin api
    • Virtual senders
  • Administrator API
  • Account users
  • Sending a Welcome Email
Documentation for version v74

Sending a Welcome Email

Description​

Sends a welcome email with a link to set a password. The email provides personal data about the initiator of the recovery/registration completion operation:

  • Platform (UserAgent of the request)
  • Device location (Geo-decoding of IP, if data is available in GeoDB)
  • Operation time (approximate time of request execution)
Example of a welcome email


URL Address​

Method: POST

https://example.com/api/v1.1/admin/accounts/users/send_welcome

Request Parameters​

ParameterTypeExampleRequiredDescription
tokenstring"abcdefghijklmnqrstuvwxyz"YesAPI token
account_idint1YesAccount identifier
namestring"example"YesUsername for personalization

Request Example​

  • JSON
  • XML
{
"token": "abcdefghijklmnqrstuvwxyz",
"account_id": 7,
"name": "example"
}
<xml>
<token>abcdefghijklmnqrstuvwxyz</token>
<account_id>Successful operation</account_id>
<name>example<name>
</xml>

Response Example​

  • JSON
  • XML
{
"error": 0,
"error_text": "Successful operation"
}
<xml>
<error>0</error>
<error_text>Successful operation</error_text>
</xml>

Response Parameters​

ParameterTypeDescription
errorintError code
error_textstringError message text
Last updated on Aug 15, 2025
Previous
Get a list of users
Next
Nodes
  • Description
  • URL Address
  • Request Parameters
  • Request Example
  • Response Example
  • Response Parameters
© 2015 - 2025 Altcraft, LLC. All rights reserved.