| Requires any of the roles: | Worker, Agent, Administrator |
| POST,OPTIONS | /v1/AgentEmailCredentialsSendTest |
|---|
export class AgentEmailCredentials
{
public Id: number;
public AgentId: number;
public EmailAddress: string;
public Username: string;
public Password: string;
public SMTPServer: string;
public SMTPPort?: number;
public SMTPAuthType: string;
public POP3Server: string;
public POP3Port?: number;
public POP3AuthType: string;
public IMAPServer: string;
public IMAPPort?: number;
public DateCreated: string;
public DateModified: string;
public constructor(init?: Partial<AgentEmailCredentials>) { (Object as any).assign(this, init); }
}
export class AgentEmailCredentialsResponse
{
public ResponseStatus: ResponseStatus;
public AgentEmailCredentials: AgentEmailCredentials[] = [];
public constructor(init?: Partial<AgentEmailCredentialsResponse>) { (Object as any).assign(this, init); }
}
export class AgentEmailCredentialsSendTestRequest
{
public constructor(init?: Partial<AgentEmailCredentialsSendTestRequest>) { (Object as any).assign(this, init); }
}
TypeScript AgentEmailCredentialsSendTestRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /v1/AgentEmailCredentialsSendTest HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"AgentEmailCredentials":[{"Id":0,"AgentId":0,"EmailAddress":"String","Username":"String","Password":"String","SMTPServer":"String","SMTPPort":0,"SMTPAuthType":"String","POP3Server":"String","POP3Port":0,"POP3AuthType":"String","IMAPServer":"String","IMAPPort":0,"DateCreated":"0001-01-01T00:00:00.0000000","DateModified":"0001-01-01T00:00:00.0000000"}]}