Evo Voice

<back to all web services

GetDashboardHome

Requires Authentication
Requires any of the roles:SystemAdministrator, Manager, CallCenterDashboard
The following routes are available for this service:
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(){}
}


Swift GetDashboardHome DTOs

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

HTTP + OTHER

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/jsonl
Content-Type: text/jsonl
Content-Length: length

{"accountId":"String","startDate":"String","endDate":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"customerSpends":[{"customerId":"String","customerName":"String","callSpend":0}]}