Billiecart API

<back to all web services

GetCurrentPersonRequest

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


open class GetCurrentPersonRequest : GetOperationUnTenanted<GetCurrentPersonResponse>()
{
}

open class GetOperationUnTenanted<TResponse> : IHasGetOptions, IGet
{
    var embed:String? = null
}

open class GetCurrentPersonResponse
{
    var responseStatus:ResponseStatus? = null
    var person:CurrentPerson? = null
}

open class CurrentPerson : Person()
{
    var isAuthenticated:Boolean? = null
    var roles:ArrayList<String> = ArrayList<String>()
}

open class Person : IIdentifiableResource
{
    var name:UserAccountName? = null
    var displayName:String? = null
    var email:String? = null
    var phoneNumber:String? = null
    var timezone:String? = null
    var defaultOrganisationId:String? = null
    var id:String? = null
}

open class UserAccountName
{
    var firstName:String? = null
    var lastName:String? = null
}

Kotlin GetCurrentPersonRequest 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 /persons/current HTTP/1.1 
Host: staging-api.billiecart.com.au 
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"}},"person":{"isAuthenticated":false,"roles":["String"],"name":{"firstName":"String","lastName":"String"},"displayName":"String","email":"String","phoneNumber":"String","timezone":"String","defaultOrganisationId":"String","id":"String"}}