Requires any of the roles: | SystemAdministrator, Manager, Customer |
POST | /settings/test-email |
---|
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Voice.Api.Settings;
namespace Voice.Api.Settings
{
public partial class EmailAccount
{
public virtual string Id { get; set; }
public virtual string Server { get; set; }
public virtual string UserName { get; set; }
public virtual int Port { get; set; }
public virtual string EmailAddress { get; set; }
public virtual string DisplayName { get; set; }
public virtual string Password { get; set; }
}
///<summary>
///Send a test email from the specified account
///</summary>
[Api(Description="Send a test email from the specified account")]
public partial class SendTestEmail
: IPost
{
///<summary>
///The email account to send from
///</summary>
[ApiMember(Description="The email account to send from")]
public virtual EmailAccount Account { get; set; }
///<summary>
///The user to send to
///</summary>
[ApiMember(Description="The user to send to")]
public virtual string EmailAddress { get; set; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /settings/test-email HTTP/1.1
Host: team.evovoice.io
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
account:
{
id: String,
server: String,
userName: String,
port: 0,
emailAddress: String,
displayName: String,
password: String
},
emailAddress: String
}