| POST | /register |
|---|
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;
public class dtos
{
/**
* Sign Up
*/
@Api(Description="Sign Up")
@DataContract
public static class Register implements IPost, IMeta
{
@DataMember(Order=1)
public String userName = null;
@DataMember(Order=2)
public String firstName = null;
@DataMember(Order=3)
public String lastName = null;
@DataMember(Order=4)
public String displayName = null;
@DataMember(Order=5)
public String email = null;
@DataMember(Order=6)
public String password = null;
@DataMember(Order=7)
public String confirmPassword = null;
@DataMember(Order=8)
public Boolean autoLogin = null;
@DataMember(Order=10)
public String errorView = null;
@DataMember(Order=11)
public HashMap<String,String> meta = null;
public String getUserName() { return userName; }
public Register setUserName(String value) { this.userName = value; return this; }
public String getFirstName() { return firstName; }
public Register setFirstName(String value) { this.firstName = value; return this; }
public String getLastName() { return lastName; }
public Register setLastName(String value) { this.lastName = value; return this; }
public String getDisplayName() { return displayName; }
public Register setDisplayName(String value) { this.displayName = value; return this; }
public String getEmail() { return email; }
public Register setEmail(String value) { this.email = value; return this; }
public String getPassword() { return password; }
public Register setPassword(String value) { this.password = value; return this; }
public String getConfirmPassword() { return confirmPassword; }
public Register setConfirmPassword(String value) { this.confirmPassword = value; return this; }
public Boolean isAutoLogin() { return autoLogin; }
public Register setAutoLogin(Boolean value) { this.autoLogin = value; return this; }
public String getErrorView() { return errorView; }
public Register setErrorView(String value) { this.errorView = value; return this; }
public HashMap<String,String> getMeta() { return meta; }
public Register setMeta(HashMap<String,String> value) { this.meta = value; return this; }
}
@DataContract
public static class RegisterResponse implements IMeta, IHasSessionId, IHasBearerToken
{
@DataMember(Order=1)
public String userId = null;
@DataMember(Order=2)
public String sessionId = null;
@DataMember(Order=3)
public String userName = null;
@DataMember(Order=4)
public String referrerUrl = null;
@DataMember(Order=5)
public String bearerToken = null;
@DataMember(Order=6)
public String refreshToken = null;
@DataMember(Order=7)
public Date refreshTokenExpiry = null;
@DataMember(Order=8)
public ArrayList<String> roles = null;
@DataMember(Order=9)
public ArrayList<String> permissions = null;
@DataMember(Order=10)
public String redirectUrl = null;
@DataMember(Order=11)
public ResponseStatus responseStatus = null;
@DataMember(Order=12)
public HashMap<String,String> meta = null;
public String getUserId() { return userId; }
public RegisterResponse setUserId(String value) { this.userId = value; return this; }
public String getSessionId() { return sessionId; }
public RegisterResponse setSessionId(String value) { this.sessionId = value; return this; }
public String getUserName() { return userName; }
public RegisterResponse setUserName(String value) { this.userName = value; return this; }
public String getReferrerUrl() { return referrerUrl; }
public RegisterResponse setReferrerUrl(String value) { this.referrerUrl = value; return this; }
public String getBearerToken() { return bearerToken; }
public RegisterResponse setBearerToken(String value) { this.bearerToken = value; return this; }
public String getRefreshToken() { return refreshToken; }
public RegisterResponse setRefreshToken(String value) { this.refreshToken = value; return this; }
public Date getRefreshTokenExpiry() { return refreshTokenExpiry; }
public RegisterResponse setRefreshTokenExpiry(Date value) { this.refreshTokenExpiry = value; return this; }
public ArrayList<String> getRoles() { return roles; }
public RegisterResponse setRoles(ArrayList<String> value) { this.roles = value; return this; }
public ArrayList<String> getPermissions() { return permissions; }
public RegisterResponse setPermissions(ArrayList<String> value) { this.permissions = value; return this; }
public String getRedirectUrl() { return redirectUrl; }
public RegisterResponse setRedirectUrl(String value) { this.redirectUrl = value; return this; }
public ResponseStatus getResponseStatus() { return responseStatus; }
public RegisterResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; }
public HashMap<String,String> getMeta() { return meta; }
public RegisterResponse setMeta(HashMap<String,String> value) { this.meta = value; return this; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /register HTTP/1.1
Host: techstacks.io
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<Register xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<UserName>String</UserName>
<FirstName>String</FirstName>
<LastName>String</LastName>
<DisplayName>String</DisplayName>
<Email>String</Email>
<Password>String</Password>
<ConfirmPassword>String</ConfirmPassword>
<AutoLogin>false</AutoLogin>
<ErrorView>String</ErrorView>
<Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Meta>
</Register>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<RegisterResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<UserId>String</UserId>
<SessionId>String</SessionId>
<UserName>String</UserName>
<ReferrerUrl>String</ReferrerUrl>
<BearerToken>String</BearerToken>
<RefreshToken>String</RefreshToken>
<RefreshTokenExpiry>0001-01-01T00:00:00</RefreshTokenExpiry>
<Roles xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Roles>
<Permissions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Permissions>
<RedirectUrl>String</RedirectUrl>
<ResponseStatus>
<ErrorCode>String</ErrorCode>
<Message>String</Message>
<StackTrace>String</StackTrace>
<Errors>
<ResponseError>
<ErrorCode>String</ErrorCode>
<FieldName>String</FieldName>
<Message>String</Message>
<Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d5p1:KeyValueOfstringstring>
<d5p1:Key>String</d5p1:Key>
<d5p1:Value>String</d5p1:Value>
</d5p1:KeyValueOfstringstring>
</Meta>
</ResponseError>
</Errors>
<Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:KeyValueOfstringstring>
<d3p1:Key>String</d3p1:Key>
<d3p1:Value>String</d3p1:Value>
</d3p1:KeyValueOfstringstring>
</Meta>
</ResponseStatus>
<Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Meta>
</RegisterResponse>