| Requires any of the roles: | Worker, Agent, Administrator, Worker, Agent, Administrator, Worker, Agent, Administrator, Worker, Agent, Administrator |
| GET,POST,PUT,DELETE,OPTIONS | /v1/AgentEmailCredentials |
|---|
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 AgentEmailCredentialsRequest
{
public AgentEmailCredentials: AgentEmailCredentials[] = [];
public constructor(init?: Partial<AgentEmailCredentialsRequest>) { (Object as any).assign(this, init); }
}
TypeScript AgentEmailCredentialsRequest DTOs
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 /v1/AgentEmailCredentials HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
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-01,
DateModified: 0001-01-01
}
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
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-01,
DateModified: 0001-01-01
}
]
}