| POST | /api/v1/completeprofile |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class CompleteProfile
{
var email:String? = null
var firstName:String? = null
var lastName:String? = null
var country:String? = null
var language:String? = null
var birthDate:Date? = null
var address:String? = null
var address2:String? = null
var city:String? = null
var state:String? = null
var zipCode:String? = null
var phoneNumber:String? = null
var phoneValidationToken:String? = null
var updateHealthProfile:Boolean? = null
var password:String? = null
}
open class CompleteProfileResponse : BaseResponse()
{
}
open class BaseResponse
{
var responseStatus:ResponseStatus? = null
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/v1/completeprofile HTTP/1.1
Host: auth.migrantleap.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"email":"String","firstName":"String","lastName":"String","country":"String","language":"String","birthDate":"\/Date(-62135596800000-0000)\/","address":"String","address2":"String","city":"String","state":"String","zipCode":"String","phoneNumber":"String","phoneValidationToken":"String","updateHealthProfile":false,"password":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"responseStatus":{"statusCode":0,"message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}