| Requires any of the roles: | Worker, Agent, Administrator |
| POST,OPTIONS | /v1/Contact/{ContactId}/Application |
|---|
"use strict";
export class ContactActivityResponse {
/** @param {{ResponseStatus?:ResponseStatus,data?:Object[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {Object[]} */
data = [];
}
export class ActivityTracker_Application {
/** @param {{ContactName?:string,Carriers?:string,ApplicationId?:number,ContactId?:number,LifeAP?:number,AnnuityFlow?:number,AnnuityTransfer?:number,DateCreated?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
ContactName;
/** @type {string} */
Carriers;
/** @type {number} */
ApplicationId;
/** @type {number} */
ContactId;
/** @type {number} */
LifeAP;
/** @type {number} */
AnnuityFlow;
/** @type {number} */
AnnuityTransfer;
/** @type {string} */
DateCreated;
}
export class ContactApplicationRequest {
/** @param {{ContactId?:number,Application?:ActivityTracker_Application}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
ContactId;
/** @type {ActivityTracker_Application} */
Application;
}
JavaScript 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:
[
{
}
]
}