| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/AgentPromotion/{StartDate} | ||
|---|---|---|---|
| GET,OPTIONS | /v1/AgentPromotion/{StartDate}/{EndDate} |
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class AgentPromotionRequest
{
open var StartDate:Date? = null
open var EndDate:Date? = null
}
open class AgentPromotionResponse
{
open var ResponseStatus:ResponseStatus? = null
open var AgentPromotion:ArrayList<AgentPromotion> = ArrayList<AgentPromotion>()
}
open class AgentPromotion
{
open var AgentPromotionId:Int? = null
open var AgentId:Int? = null
open var FirstName:String? = null
open var LastName:String? = null
open var FullName:String? = null
open var PreviousLevel:BigDecimal? = null
open var PreviousRank:String? = null
open var NewLevel:BigDecimal? = null
open var NewRank:String? = null
open var CashFlow:BigDecimal? = null
open var AppCount:Int? = null
open var DateCreated:Date? = null
}
Kotlin AgentPromotionRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/AgentPromotion/{StartDate} HTTP/1.1
Host: api.dev.dynamics.trendsic.com
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"AgentPromotion":[{"AgentPromotionId":0,"AgentId":0,"FirstName":"String","LastName":"String","FullName":"String String","PreviousLevel":0,"PreviousRank":"String","NewLevel":0,"NewRank":"String","CashFlow":0,"AppCount":0,"DateCreated":"0001-01-01T00:00:00.0000000"}]}