| Requires any of the roles: | SystemAdministrator, Manager, CallCenterDashboard |
| All Verbs | /dashboard/home |
|---|
import Foundation
import ServiceStack
public class GetDashboardHome : Codable
{
public var accountId:String
public var startDate:String
public var endDate:String
required public init(){}
}
public class DashboardHomeData : Codable
{
public var customerSpends:[DashboardCustomerSpend]
required public init(){}
}
public class DashboardCustomerSpend : Codable
{
public var customerId:String
public var customerName:String
public var callSpend:Double
required public init(){}
}
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.
POST /dashboard/home HTTP/1.1
Host: evovoice.io
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"accountId":"String","startDate":"String","endDate":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"customerSpends":[{"customerId":"String","customerName":"String","callSpend":0}]}