Overview

You can use this method to send a welcome mail to a new user.

The Method

APIMethodEndpoint
RESTPOSThttps://[Your URL]/api/2.0/send_welcome_email/:welcome_user_id
XML-RPCCallSendAuthenticationEmail

Parameters

PropertyTypeDescriptionDefaultRequiredRead Only
$welcome_user_idintegerThe ID of the user who will be sent a welcome email.emptyYesNo

Example Request

URL : https://live.everlytic.net/api/2.0/send_welcome_email/12345

{
"welcome_user_id" : 12345
}

Example Response

{
    "links": [
        {
            "title": "Self",
            "rel": "self",
            "href": "https://live.everlytic.net/api/2.0/send_welcome_email/12345"
        },
        {
            "title": "Home",
            "rel": "home",
            "href": "https://live.everlytic.net/api/2.0/"
        }
    ],
    "value": "success"
}