| Requires any of the roles: | Agent, Administrator |
| GET | /v1/Production | ||
|---|---|---|---|
| GET | /v1/Production/DateRange/{StartDate}/{EndDate} |
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
public static class ProductionRequest
{
public Date StartDate = null;
public Date EndDate = null;
public Date getStartDate() { return StartDate; }
public ProductionRequest setStartDate(Date value) { this.StartDate = value; return this; }
public Date getEndDate() { return EndDate; }
public ProductionRequest setEndDate(Date value) { this.EndDate = value; return this; }
}
public static class ProductionResponse
{
public ResponseStatus ResponseStatus = null;
public ArrayList<Production> ReportData = new ArrayList<Production>();
public ResponseStatus getResponseStatus() { return ResponseStatus; }
public ProductionResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
public ArrayList<Production> getReportData() { return ReportData; }
public ProductionResponse setReportData(ArrayList<Production> value) { this.ReportData = value; return this; }
}
public static class Production
{
public Integer AgentId = null;
public Integer MVPID = null;
public Integer AVPID = null;
public Integer RVPID = null;
public String FirstName = null;
public String LastName = null;
public String MiddleInitial = null;
public BigDecimal AgentLevel = null;
public String Rank = null;
public String FullName = null;
public Boolean IsMVP = null;
public Boolean IsRVP = null;
public Boolean IsAVP = null;
public Integer PolicyCount = null;
public Double AppCount = null;
public BigDecimal Points = null;
public BigDecimal Cashflow = null;
public Integer getAgentId() { return AgentId; }
public Production setAgentId(Integer value) { this.AgentId = value; return this; }
public Integer getMvpid() { return MVPID; }
public Production setMvpid(Integer value) { this.MVPID = value; return this; }
public Integer getAvpid() { return AVPID; }
public Production setAvpid(Integer value) { this.AVPID = value; return this; }
public Integer getRvpid() { return RVPID; }
public Production setRvpid(Integer value) { this.RVPID = value; return this; }
public String getFirstName() { return FirstName; }
public Production setFirstName(String value) { this.FirstName = value; return this; }
public String getLastName() { return LastName; }
public Production setLastName(String value) { this.LastName = value; return this; }
public String getMiddleInitial() { return MiddleInitial; }
public Production setMiddleInitial(String value) { this.MiddleInitial = value; return this; }
public BigDecimal getAgentLevel() { return AgentLevel; }
public Production setAgentLevel(BigDecimal value) { this.AgentLevel = value; return this; }
public String getRank() { return Rank; }
public Production setRank(String value) { this.Rank = value; return this; }
public String getFullName() { return FullName; }
public Production setFullName(String value) { this.FullName = value; return this; }
public Boolean getIsMVP() { return IsMVP; }
public Production setIsMVP(Boolean value) { this.IsMVP = value; return this; }
public Boolean getIsRVP() { return IsRVP; }
public Production setIsRVP(Boolean value) { this.IsRVP = value; return this; }
public Boolean getIsAVP() { return IsAVP; }
public Production setIsAVP(Boolean value) { this.IsAVP = value; return this; }
public Integer getPolicyCount() { return PolicyCount; }
public Production setPolicyCount(Integer value) { this.PolicyCount = value; return this; }
public Double getAppCount() { return AppCount; }
public Production setAppCount(Double value) { this.AppCount = value; return this; }
public BigDecimal getPoints() { return Points; }
public Production setPoints(BigDecimal value) { this.Points = value; return this; }
public BigDecimal getCashflow() { return Cashflow; }
public Production setCashflow(BigDecimal value) { this.Cashflow = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Production HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<ProductionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<ReportData>
<Production>
<AVPID>0</AVPID>
<AgentId>0</AgentId>
<AgentLevel>0</AgentLevel>
<AppCount>0</AppCount>
<Cashflow>0</Cashflow>
<FirstName>String</FirstName>
<FullName>String</FullName>
<IsAVP>false</IsAVP>
<IsMVP>false</IsMVP>
<IsRVP>false</IsRVP>
<LastName>String</LastName>
<MVPID>0</MVPID>
<MiddleInitial>String</MiddleInitial>
<Points>0</Points>
<PolicyCount>0</PolicyCount>
<RVPID>0</RVPID>
<Rank>String</Rank>
</Production>
</ReportData>
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
<d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</d2p1:Meta>
</d2p1:ResponseError>
</d2p1:Errors>
<d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</d2p1:Meta>
</ResponseStatus>
</ProductionResponse>