POST | /api/v1/users/register |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
import com.google.gson.annotations.*;
import com.google.gson.reflect.*;
public class dtos
{
public static class UserRegister
{
public String userName = null;
public String email = null;
public String fullName = null;
public String firstName = null;
public String lastName = null;
public String password = null;
public String confirmPassword = null;
public String phone = null;
public String address = null;
public String idNumber = null;
public Date idRegDate = null;
public String idAddressProvide = null;
public Date dob = null;
public Short gender = null;
public String job = null;
public String country = null;
public String captcha = null;
public String session = null;
public String referenceSource = null;
public String returnUrl = null;
public String getUserName() { return userName; }
public UserRegister setUserName(String value) { this.userName = value; return this; }
public String getEmail() { return email; }
public UserRegister setEmail(String value) { this.email = value; return this; }
public String getFullName() { return fullName; }
public UserRegister setFullName(String value) { this.fullName = value; return this; }
public String getFirstName() { return firstName; }
public UserRegister setFirstName(String value) { this.firstName = value; return this; }
public String getLastName() { return lastName; }
public UserRegister setLastName(String value) { this.lastName = value; return this; }
public String getPassword() { return password; }
public UserRegister setPassword(String value) { this.password = value; return this; }
public String getConfirmPassword() { return confirmPassword; }
public UserRegister setConfirmPassword(String value) { this.confirmPassword = value; return this; }
public String getPhone() { return phone; }
public UserRegister setPhone(String value) { this.phone = value; return this; }
public String getAddress() { return address; }
public UserRegister setAddress(String value) { this.address = value; return this; }
public String getIdNumber() { return idNumber; }
public UserRegister setIdNumber(String value) { this.idNumber = value; return this; }
public Date getIdRegDate() { return idRegDate; }
public UserRegister setIdRegDate(Date value) { this.idRegDate = value; return this; }
public String getIdAddressProvide() { return idAddressProvide; }
public UserRegister setIdAddressProvide(String value) { this.idAddressProvide = value; return this; }
public Date getDob() { return dob; }
public UserRegister setDob(Date value) { this.dob = value; return this; }
public Short getGender() { return gender; }
public UserRegister setGender(Short value) { this.gender = value; return this; }
public String getJob() { return job; }
public UserRegister setJob(String value) { this.job = value; return this; }
public String getCountry() { return country; }
public UserRegister setCountry(String value) { this.country = value; return this; }
public String getCaptcha() { return captcha; }
public UserRegister setCaptcha(String value) { this.captcha = value; return this; }
public String getSession() { return session; }
public UserRegister setSession(String value) { this.session = value; return this; }
public String getReferenceSource() { return referenceSource; }
public UserRegister setReferenceSource(String value) { this.referenceSource = value; return this; }
public String getReturnUrl() { return returnUrl; }
public UserRegister setReturnUrl(String value) { this.returnUrl = value; return this; }
}
public static class BaseResponse<List> implements IResponseRequest
{
public Integer code = null;
public String message = null;
public ArrayList<BannerListResponse> data = null;
public Integer getCode() { return code; }
public BaseResponse<List> setCode(Integer value) { this.code = value; return this; }
public String getMessage() { return message; }
public BaseResponse<List> setMessage(String value) { this.message = value; return this; }
public ArrayList<BannerListResponse> getData() { return data; }
public BaseResponse<List> setData(ArrayList<BannerListResponse> value) { this.data = value; return this; }
}
public static class BannerListResponse
{
public Integer id = null;
public String title = null;
public String image = null;
public String url = null;
public Boolean publish = null;
public Date publishDate = null;
public Integer orderIndex = null;
public Integer getId() { return id; }
public BannerListResponse setId(Integer value) { this.id = value; return this; }
public String getTitle() { return title; }
public BannerListResponse setTitle(String value) { this.title = value; return this; }
public String getImage() { return image; }
public BannerListResponse setImage(String value) { this.image = value; return this; }
public String getUrl() { return url; }
public BannerListResponse setUrl(String value) { this.url = value; return this; }
public Boolean isPublish() { return publish; }
public BannerListResponse setPublish(Boolean value) { this.publish = value; return this; }
public Date getPublishDate() { return publishDate; }
public BannerListResponse setPublishDate(Date value) { this.publishDate = value; return this; }
public Integer getOrderIndex() { return orderIndex; }
public BannerListResponse setOrderIndex(Integer value) { this.orderIndex = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/v1/users/register HTTP/1.1
Host: efun-id-api-sandbox.efun.vn
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
userName: String,
email: String,
fullName: String,
firstName: String,
lastName: String,
password: String,
confirmPassword: String,
phone: String,
address: String,
idNumber: String,
idRegDate: "0001-01-01T00:00:00.0000000+07:06",
idAddressProvide: String,
dob: "0001-01-01T00:00:00.0000000+07:06",
gender: 0,
job: String,
country: String,
captcha: String,
session: String,
referenceSource: String,
returnUrl: String
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { code: 0, message: String, data: { id: 0, username: String, first_name: String, last_name: String, full_name: String, email: String, phone_number: String, is_play_now: 0, status: 0 } }