| Requires any of the roles: | Worker, Agent, Administrator |
| POST,OPTIONS | /v1/Contact/{ContactId}/Application |
|---|
export class ContactActivityResponse
{
public ResponseStatus: ResponseStatus;
public data: Object[] = [];
public constructor(init?: Partial<ContactActivityResponse>) { (Object as any).assign(this, init); }
}
export class ActivityTracker_Application
{
public ContactName: string;
public Carriers: string;
public ApplicationId: number;
public ContactId: number;
public LifeAP: number;
public AnnuityFlow: number;
public AnnuityTransfer: number;
public DateCreated: string;
public constructor(init?: Partial<ActivityTracker_Application>) { (Object as any).assign(this, init); }
}
export class ContactApplicationRequest
{
public ContactId: number;
public Application: ActivityTracker_Application;
public constructor(init?: Partial<ContactApplicationRequest>) { (Object as any).assign(this, init); }
}
TypeScript ContactApplicationRequest 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/Contact/{ContactId}/Application HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ContactId: 0,
Application:
{
ContactName: String,
Carriers: String,
ApplicationId: 0,
ContactId: 0,
LifeAP: 0,
AnnuityFlow: 0,
AnnuityTransfer: 0,
DateCreated: 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
}
},
data:
[
{
}
]
}