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
Parameter | Required | Type | Description |
---|---|---|---|
id_list | Yes | Array<Integer> | The unique ID(s) of extension(s). Note:
|
Response parameters
Parameter | Type | Description |
---|---|---|
errcode | Integer | Returned error code.
Note: You can check the error code and
error message in Error Code and Error Message.
|
errmsg | String | Returned message.
|
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"
}