efun.id.api

<back to all web services

UserRegister

The following routes are available for this service:
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; }
    }

}

Java UserRegister DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

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: application/xml
Content-Type: application/xml
Content-Length: length

<UserRegister xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/efun.id.api.ServiceModel">
  <Address>String</Address>
  <Captcha>String</Captcha>
  <ConfirmPassword>String</ConfirmPassword>
  <Country>String</Country>
  <Dob>0001-01-01T00:00:00</Dob>
  <Email>String</Email>
  <FirstName>String</FirstName>
  <FullName>String</FullName>
  <Gender>0</Gender>
  <IdAddressProvide>String</IdAddressProvide>
  <IdNumber>String</IdNumber>
  <IdRegDate>0001-01-01T00:00:00</IdRegDate>
  <Job>String</Job>
  <LastName>String</LastName>
  <Password>String</Password>
  <Phone>String</Phone>
  <ReferenceSource>String</ReferenceSource>
  <ReturnUrl>String</ReturnUrl>
  <Session>String</Session>
  <UserName>String</UserName>
</UserRegister>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<BaseResponseOfUserRegisterResponsee8XEboS6 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/efun.id.api.ServiceModel">
  <Code>0</Code>
  <Data>
    <created_at>0001-01-01T00:00:00</created_at>
    <email>String</email>
    <first_name>String</first_name>
    <full_name>String</full_name>
    <id>0</id>
    <is_play_now>0</is_play_now>
    <last_name>String</last_name>
    <phone_number>String</phone_number>
    <status>0</status>
    <updated_at>0001-01-01T00:00:00</updated_at>
    <username>String</username>
  </Data>
  <Message>String</Message>
</BaseResponseOfUserRegisterResponsee8XEboS6>