Skip to main content

Update Email Server

Select

SaaS
Customer Managed

This operation updates the configuration for the email server.

More Details

Request Body
  • SMTPServerName string
  • SMTPPort integer
  • senderEmail string
  • senderName string
  • encryptionAlgorithm string
  • useAuthentication boolean
  • username string
  • password string
Responses

OK


Schema
  • errorString string
  • errorCode integer
POST /emailserver    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"SMTPServerName": "string",
"SMTPPort": 0,
"senderEmail": "string",
"senderName": "string",
"encryptionAlgorithm": "string",
"useAuthentication": true,
"username": "string",
"password": "string"
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/EmailServer' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"SMTPServerName": "string",
"SMTPPort": 0,
"senderEmail": "string",
"senderName": "string",
"encryptionAlgorithm": "string",
"useAuthentication": true,
"username": "string",
"password": "string"
}'