| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Smartsheets/AggregateLife/{Type}/{StartDate}/{EndDate} | ||
|---|---|---|---|
| GET,OPTIONS | /v1/Smartsheets/AggregateLife/{Type}/{StartDate}/{EndDate}/{AgentID} |
"use strict";
export class SmartsheetsAggregate {
/** @param {{AgentID?:number,AgentName?:string,Apps?:number,LifePrem?:number,TransferPrem?:number,FlowPrem?:number,PolicyNumber?:string,AppDate?:string,FirstName?:string,LastName?:string,CPT?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
AgentID;
/** @type {string} */
AgentName;
/** @type {number} */
Apps;
/** @type {number} */
LifePrem;
/** @type {number} */
TransferPrem;
/** @type {number} */
FlowPrem;
/** @type {string} */
PolicyNumber;
/** @type {?string} */
AppDate;
/** @type {string} */
FirstName;
/** @type {string} */
LastName;
/** @type {number} */
CPT;
}
export class SmartsheetsAggregateAllResponse {
/** @param {{ResponseStatus?:ResponseStatus,SmartsheetAggregates?:SmartsheetsAggregate[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {SmartsheetsAggregate[]} */
SmartsheetAggregates = [];
}
export class SmartsheetsAggregateLifeRequest {
/** @param {{Type?:string,StartDate?:string,EndDate?:string,AgentID?:number}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
Type;
/** @type {string} */
StartDate;
/** @type {string} */
EndDate;
/** @type {number} */
AgentID;
}
JavaScript SmartsheetsAggregateLifeRequest 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.
GET /v1/Smartsheets/AggregateLife/{Type}/{StartDate}/{EndDate} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/jsv
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
}
},
SmartsheetAggregates:
[
{
AgentID: 0,
AgentName: String,
Apps: 0,
LifePrem: 0,
TransferPrem: 0,
FlowPrem: 0,
PolicyNumber: String,
AppDate: 0001-01-01,
FirstName: String,
LastName: String,
CPT: 0
}
]
}