Trendsic Platform Service

<back to all web services

ProductionRequest

Requires Authentication
Requires any of the roles:Agent, Administrator
The following routes are available for this service:
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; }
    }

}

Java ProductionRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

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: 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
		}
	},
	ReportData: 
	[
		{
			AgentId: 0,
			MVPID: 0,
			AVPID: 0,
			RVPID: 0,
			FirstName: String,
			LastName: String,
			MiddleInitial: String,
			AgentLevel: 0,
			Rank: String,
			FullName: String,
			IsMVP: False,
			IsRVP: False,
			IsAVP: False,
			PolicyCount: 0,
			AppCount: 0,
			Points: 0,
			Cashflow: 0
		}
	]
}