When you call Email Sender Service with PUT method, you can update a email_sender on next4biz CRM.
Your request body must be contain 4 properties.
If you don’t want to set password on update. You don’t sent. If you update any connection property, next4biz CRM try smtp connection and sent a test email. If next4biz CRM couldn’t success, response an error message via api
| Name | Value |
|---|---|
| REST-API METHOD | Email Sender Update |
| HTTP METHOD | GET |
| RESPONSE TYPE | JSON |
| URL | https://api.crm.next4biz.com/email-sender/ |
| REQUEST HEAD | Accept: application/json; Content-Type: application/json |
{
"code": 200,
"status": "Success",
"result": [
{
"email_sender_id": 75,
"sender_name": "Johny Doe",
"email_address": "[email protected]",
"smtp_username": "[email protected]",
"smtp_password": "***********",
"smtp_server": "smtp.acme.com",
"smtp_secure": "tls",
"smtp_port": "587",
"channel": {
"channel_id": "79",
"channel_name": "Jhony",
"channel_slug": "jhony",
"created_at": "2017-09-05 11:53:41",
"lang": "tr",
"is_builtin": true,
"business_type": 1
}
}
]
}