• Post category:SMTP
  • Запись изменена:03.11.2022

DELETE api/2.0/settings/smtp

Данная функция требует аутентификации

Описание
Сбрасывает настройки SMTP текущего портала.

Параметры
Этот метод не имеет параметров.

Пример

DELETE api/2.0/settings/smtp
Host: yourportal.Р7.com
Content-Type: application/json
Accept: application/json

Возвращает
Настройки SMTP по умолчанию

Пример ответа

application/json

{
  "status": 0,
  "response": {
    "host": "mail.example.com",
    "port": 25,
    "senderAddress": "notify@example.com",
    "senderDisplayName": "Postman",
    "credentialsUserName": "notify@example.com",
    "credentialsUserPassword": "{password}",
    "enableSSL": false,
    "enableAuth": true
  }
}

text/xml

<result>
  <status>0</status>
  <response>
    <host>mail.example.com</host>
    <port>25</port>
    <senderAddress>notify@example.com</senderAddress>
    <senderDisplayName>Postman</senderDisplayName>
    <credentialsUserName>notify@example.com</credentialsUserName>
    <credentialsUserPassword>{password}</credentialsUserPassword>
    <enableSSL>false</enableSSL>
    <enableAuth>true</enableAuth>
  </response>
</result>