Send Linkus Welcome Email to Extensions

Send Linkus welcome email to specified extensions.

Request URL

POST {base_url}/{api_path}/extension/send_welcome_email?access_token={access_token}

Request parameters

Table 1.
Parameter Required Type Description
id_list Yes Array<Integer> The unique ID(s) of extension(s).
Note:

Response parameters

Table 2.
Parameter Type Description
errcode Integer Returned error code.
  • 0: Succeed.
  • Non-zero value: Failed.
Note: You can check the error code and error message in Error Code and Error Message.
errmsg String Returned message.
  • SUCCESS: Succeed.
  • FAILURE: Failed.

Examples

Request example

Send Linkus Welcome Email to extension 1009 & 1010, whose extension ID is "24" and "25" respectively.

POST /openapi/v1.0/extension/send_welcome_email?access_token=AwHqsEm7xdrgz5LRbhByC7PWvCt0MgD2 
Host: 192.168.5.150:8088
Content-Type: application/json

{
    "id_list": [
        24,25
    ]
}

Response example

HTTP/1.1 200 OK
{
    "errcode": 0,
    "errmsg": "SUCCESS"
}