| Requires any of the roles: | Agent, Administrator |
| GET,OPTIONS | /v1/Report/ContactCategorization |
|---|
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
open class ContactCategorizationRequest
{
}
open class ContactCategorizationResponse
{
open var ResponseStatus:ResponseStatus? = null
open var ContactCategorizations:ArrayList<ContactCategorization> = ArrayList<ContactCategorization>()
}
open class ContactCategorization
{
open var AgentId:Int? = null
open var FirstName:String? = null
open var LastName:String? = null
open var AgentStatus:String? = null
open var TotalContacts:Int? = null
open var TotalUncategorized:Int? = null
open var TotalA:Int? = null
open var TotalB:Int? = null
open var TotalC:Int? = null
open var TotalD:Int? = null
open var TotalI:Int? = null
}
Kotlin ContactCategorizationRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /v1/Report/ContactCategorization HTTP/1.1 Host: api.dev.dynamics.trendsic.com Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"ContactCategorizations":[{"AgentId":0,"FirstName":"String","LastName":"String","AgentStatus":"String","TotalContacts":0,"TotalUncategorized":0,"TotalA":0,"TotalB":0,"TotalC":0,"TotalD":0,"TotalI":0}]}