Evo Voice

<back to all web services

GetAuthStatus

Gets the current authenticated status or null

The following routes are available for this service:
GET/auth/status
import java.math.*
import java.util.*
import net.servicestack.client.*


/**
* Gets the current authenticated status or null
*/
@Api(Description="Gets the current authenticated status or null")
open class GetAuthStatus : IGet
{
}

open class UserInfo
{
    var id:String? = null
    var isAuthenticated:Boolean? = null
    var firstName:String? = null
    var lastName:String? = null
    var name:String? = null
    var avatarUrl:String? = null
    var emailAddress:String? = null
    var roles:ArrayList<String> = ArrayList<String>()
    var accountIds:ArrayList<String> = ArrayList<String>()
    var accountNames:ArrayList<String> = ArrayList<String>()
    var dashboardPermissions:ArrayList<DashboardPermissions> = ArrayList<DashboardPermissions>()
}

enum class DashboardPermissions
{
    ViewFiles,
    ViewNotifications,
    ViewSessions,
    ViewEndpoints,
    ViewReports,
    ViewCustomers,
    ViewFlows,
}

Kotlin GetAuthStatus 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

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /auth/status HTTP/1.1 
Host: evovoice.io 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"id":"String","isAuthenticated":false,"firstName":"String","lastName":"String","name":"String","avatarUrl":"String","emailAddress":"String","roles":["String"],"accountIds":["String"],"accountNames":["String"],"dashboardPermissions":["ViewFiles"]}