BokaMera.API.Host

<back to all web services

UnSyncedUsers

The following routes are available for this service:
GET/unsyncedusers/Get user that are no sync benween DB and Keycloack
import java.math.*
import java.util.*
import net.servicestack.client.*


open class UnSyncedUsers
{
    /**
    * Id of the company
    */
    @ApiMember(Description="Id of the company", IsRequired=true, ParameterType="path")
    var CompanyId:UUID? = null
}

open class UnSyncedUsersResponse
{
    var CompanyId:UUID? = null
    var UnSyncedUsers:ArrayList<UnSyncedUserResponse> = ArrayList<UnSyncedUserResponse>()
}

open class UnSyncedUserResponse
{
    var Email:String? = null
    var InDb:Boolean? = null
    var InKeyCloak:Boolean? = null
    var ErrorGettingValuesFromKeyCloak:Boolean? = null
}

Kotlin UnSyncedUsers 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 /unsyncedusers/ HTTP/1.1 
Host: api.bokamera.se 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"UnSyncedUsers":[{"Email":"String","InDb":false,"InKeyCloak":false,"ErrorGettingValuesFromKeyCloak":false}]}