BokaMera.API.Host

<back to all web services

UpdateUserEmail

The following routes are available for this service:
POST/users/confirmemailConfirm my new email
import java.math.*
import java.util.*
import net.servicestack.client.*


@ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400)
// @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401)
open class UpdateUserEmail
{
    @ApiMember(IsRequired=true)
    var Token:String? = null

    /**
    * The user realm for identity server.  BookMore = 1, BookMoreAdmin = 2 
    */
    @ApiMember(Description="The user realm for identity server.  BookMore = 1, BookMoreAdmin = 2 ", IsRequired=true)
    var Realm:KeyCloakRealm? = null
}

enum class KeyCloakRealm(val value:Int)
{
    BookMore(1),
    BookMoreAdmin(2),
    SuperAdmin(3),
}

open class UpdateUserEmailResponse
{
    var ResponseStatus:Object? = null
    var UserId:UUID? = null
    var Email:String? = null
}

Kotlin UpdateUserEmail 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 /users/confirmemail HTTP/1.1 
Host: testapi.bokamera.se 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"Token":"String","Realm":"BookMore"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"ResponseStatus":{},"UserId":"00000000-0000-0000-0000-000000000000","Email":"String"}