| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/PolicyReport/{PolicyNumber} |
|---|
"use strict";
export class CommissionListing {
/** @param {{ID?:number,ProcessDate?:string,PaymentDate?:string,AgentId?:number,Agent?:string,OAgentID?:number,OAgent?:string,Policy?:string,PolicyType?:string,Insured?:string,Premium?:number,Part?:number,PartPercent?:number,Amount?:number,Company?:string,Gross?:number,AgentNumber?:string,CommissionRate?:number,Description?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {number} */
ID;
/** @type {string} */
ProcessDate;
/** @type {string} */
PaymentDate;
/** @type {number} */
AgentId;
/** @type {string} */
Agent;
/** @type {number} */
OAgentID;
/** @type {string} */
OAgent;
/** @type {string} */
Policy;
/** @type {string} */
PolicyType;
/** @type {string} */
Insured;
/** @type {number} */
Premium;
/** @type {number} */
Part;
/** @type {number} */
PartPercent;
/** @type {number} */
Amount;
/** @type {string} */
Company;
/** @type {number} */
Gross;
/** @type {string} */
AgentNumber;
/** @type {number} */
CommissionRate;
/** @type {string} */
Description;
}
export class PolicyReportResponse {
/** @param {{ResponseStatus?:ResponseStatus,ReportData?:CommissionListing[]}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {ResponseStatus} */
ResponseStatus;
/** @type {CommissionListing[]} */
ReportData = [];
}
export class PolicyReportRequest {
/** @param {{PolicyNumber?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/** @type {string} */
PolicyNumber;
}
JavaScript PolicyReportRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/PolicyReport/{PolicyNumber} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"ReportData":[{"ID":0,"ProcessDate":"0001-01-01T00:00:00.0000000","PaymentDate":"0001-01-01T00:00:00.0000000","AgentId":0,"Agent":"String","OAgentID":0,"OAgent":"String","Policy":"String","PolicyType":"String","Insured":"String","Premium":0,"Part":0,"PartPercent":0,"Amount":0,"Company":"String","Gross":0,"AgentNumber":"String","CommissionRate":0,"Description":"String"}]}