PUT | /users | Update my information | Updates the logged in users info both in customer profile and application admin profile if any exists. Users are only allowed to update their own info. |
---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
@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)
@ValidateRequest(Validator="IsAuthenticated")
public static class UpdateUser
{
/**
* The user id for your profile.
*/
@ApiMember(Description="The user id for your profile.")
public UUID UserId = null;
public String NewEmail = null;
public UpdateCustomerProfile UserProfile = null;
public UpdateAdminProfile AdminProfile = 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)
public KeyCloakRealm Realm = null;
public InvoiceAddressToHandle InvoiceAddress = null;
public UUID getUserId() { return UserId; }
public UpdateUser setUserId(UUID value) { this.UserId = value; return this; }
public String getNewEmail() { return NewEmail; }
public UpdateUser setNewEmail(String value) { this.NewEmail = value; return this; }
public UpdateCustomerProfile getUserProfile() { return UserProfile; }
public UpdateUser setUserProfile(UpdateCustomerProfile value) { this.UserProfile = value; return this; }
public UpdateAdminProfile getAdminProfile() { return AdminProfile; }
public UpdateUser setAdminProfile(UpdateAdminProfile value) { this.AdminProfile = value; return this; }
public KeyCloakRealm getRealm() { return Realm; }
public UpdateUser setRealm(KeyCloakRealm value) { this.Realm = value; return this; }
public InvoiceAddressToHandle getInvoiceAddress() { return InvoiceAddress; }
public UpdateUser setInvoiceAddress(InvoiceAddressToHandle value) { this.InvoiceAddress = value; return this; }
}
public static class UpdateCustomerProfile
{
public String Firstname = null;
public String Lastname = null;
public String Phone = null;
public String Email = null;
public InvoiceAddressResponse InvoiceAddress = null;
public String getFirstname() { return Firstname; }
public UpdateCustomerProfile setFirstname(String value) { this.Firstname = value; return this; }
public String getLastname() { return Lastname; }
public UpdateCustomerProfile setLastname(String value) { this.Lastname = value; return this; }
public String getPhone() { return Phone; }
public UpdateCustomerProfile setPhone(String value) { this.Phone = value; return this; }
public String getEmail() { return Email; }
public UpdateCustomerProfile setEmail(String value) { this.Email = value; return this; }
public InvoiceAddressResponse getInvoiceAddress() { return InvoiceAddress; }
public UpdateCustomerProfile setInvoiceAddress(InvoiceAddressResponse value) { this.InvoiceAddress = value; return this; }
}
public static class InvoiceAddressResponse
{
public UUID InvoiceAddressId = null;
public UUID UserId = null;
public String CorporateIdentityNumber = null;
public String InvoiceAddress1 = null;
public String InvoiceAddress2 = null;
public String InvoiceCity = null;
public String InvoicePostalCode = null;
public String InvoiceCountryCode = null;
public UUID getInvoiceAddressId() { return InvoiceAddressId; }
public InvoiceAddressResponse setInvoiceAddressId(UUID value) { this.InvoiceAddressId = value; return this; }
public UUID getUserId() { return UserId; }
public InvoiceAddressResponse setUserId(UUID value) { this.UserId = value; return this; }
public String getCorporateIdentityNumber() { return CorporateIdentityNumber; }
public InvoiceAddressResponse setCorporateIdentityNumber(String value) { this.CorporateIdentityNumber = value; return this; }
public String getInvoiceAddress1() { return InvoiceAddress1; }
public InvoiceAddressResponse setInvoiceAddress1(String value) { this.InvoiceAddress1 = value; return this; }
public String getInvoiceAddress2() { return InvoiceAddress2; }
public InvoiceAddressResponse setInvoiceAddress2(String value) { this.InvoiceAddress2 = value; return this; }
public String getInvoiceCity() { return InvoiceCity; }
public InvoiceAddressResponse setInvoiceCity(String value) { this.InvoiceCity = value; return this; }
public String getInvoicePostalCode() { return InvoicePostalCode; }
public InvoiceAddressResponse setInvoicePostalCode(String value) { this.InvoicePostalCode = value; return this; }
public String getInvoiceCountryCode() { return InvoiceCountryCode; }
public InvoiceAddressResponse setInvoiceCountryCode(String value) { this.InvoiceCountryCode = value; return this; }
}
public static class UpdateAdminProfile
{
public String Firstname = null;
public String Lastname = null;
public String Phone = null;
public String Email = null;
public String getFirstname() { return Firstname; }
public UpdateAdminProfile setFirstname(String value) { this.Firstname = value; return this; }
public String getLastname() { return Lastname; }
public UpdateAdminProfile setLastname(String value) { this.Lastname = value; return this; }
public String getPhone() { return Phone; }
public UpdateAdminProfile setPhone(String value) { this.Phone = value; return this; }
public String getEmail() { return Email; }
public UpdateAdminProfile setEmail(String value) { this.Email = value; return this; }
}
public static enum KeyCloakRealm
{
BookMore(1),
BookMoreAdmin(2),
SuperAdmin(3);
private final int value;
KeyCloakRealm(final int intValue) { value = intValue; }
public int getValue() { return value; }
}
public static class InvoiceAddressToHandle
{
public String CorporateIdentityNumber = null;
public String InvoiceAddress1 = null;
public String InvoiceAddress2 = null;
public String InvoiceCity = null;
public String InvoicePostalCode = null;
public String InvoiceCountryCode = null;
public String getCorporateIdentityNumber() { return CorporateIdentityNumber; }
public InvoiceAddressToHandle setCorporateIdentityNumber(String value) { this.CorporateIdentityNumber = value; return this; }
public String getInvoiceAddress1() { return InvoiceAddress1; }
public InvoiceAddressToHandle setInvoiceAddress1(String value) { this.InvoiceAddress1 = value; return this; }
public String getInvoiceAddress2() { return InvoiceAddress2; }
public InvoiceAddressToHandle setInvoiceAddress2(String value) { this.InvoiceAddress2 = value; return this; }
public String getInvoiceCity() { return InvoiceCity; }
public InvoiceAddressToHandle setInvoiceCity(String value) { this.InvoiceCity = value; return this; }
public String getInvoicePostalCode() { return InvoicePostalCode; }
public InvoiceAddressToHandle setInvoicePostalCode(String value) { this.InvoicePostalCode = value; return this; }
public String getInvoiceCountryCode() { return InvoiceCountryCode; }
public InvoiceAddressToHandle setInvoiceCountryCode(String value) { this.InvoiceCountryCode = value; return this; }
}
public static class UpdateUserResponse
{
public Object ResponseStatus = null;
/**
* The user id for your profile.
*/
@ApiMember(Description="The user id for your profile.", IsRequired=true)
public UUID UserId = null;
public UserProfileResponse UserProfile = null;
public AdminProfile AdminProfile = null;
public Boolean IsSentConfirmationUpdateEmail = null;
public InvoiceAddressResponse InvoiceAddress = null;
public Object getResponseStatus() { return ResponseStatus; }
public UpdateUserResponse setResponseStatus(Object value) { this.ResponseStatus = value; return this; }
public UUID getUserId() { return UserId; }
public UpdateUserResponse setUserId(UUID value) { this.UserId = value; return this; }
public UserProfileResponse getUserProfile() { return UserProfile; }
public UpdateUserResponse setUserProfile(UserProfileResponse value) { this.UserProfile = value; return this; }
public AdminProfile getAdminProfile() { return AdminProfile; }
public UpdateUserResponse setAdminProfile(AdminProfile value) { this.AdminProfile = value; return this; }
public Boolean getIsSentConfirmationUpdateEmail() { return IsSentConfirmationUpdateEmail; }
public UpdateUserResponse setIsSentConfirmationUpdateEmail(Boolean value) { this.IsSentConfirmationUpdateEmail = value; return this; }
public InvoiceAddressResponse getInvoiceAddress() { return InvoiceAddress; }
public UpdateUserResponse setInvoiceAddress(InvoiceAddressResponse value) { this.InvoiceAddress = value; return this; }
}
public static class UserProfileResponse
{
public UUID Id = null;
public String Firstname = null;
public String Lastname = null;
public String Phone = null;
public String Email = null;
public InvoiceAddressResponse InvoiceAddress = null;
public UUID getId() { return Id; }
public UserProfileResponse setId(UUID value) { this.Id = value; return this; }
public String getFirstname() { return Firstname; }
public UserProfileResponse setFirstname(String value) { this.Firstname = value; return this; }
public String getLastname() { return Lastname; }
public UserProfileResponse setLastname(String value) { this.Lastname = value; return this; }
public String getPhone() { return Phone; }
public UserProfileResponse setPhone(String value) { this.Phone = value; return this; }
public String getEmail() { return Email; }
public UserProfileResponse setEmail(String value) { this.Email = value; return this; }
public InvoiceAddressResponse getInvoiceAddress() { return InvoiceAddress; }
public UserProfileResponse setInvoiceAddress(InvoiceAddressResponse value) { this.InvoiceAddress = value; return this; }
}
public static class AdminProfile
{
public UUID CompanyId = null;
public UUID Id = null;
public String Firstname = null;
public String Lastname = null;
public String Email = null;
public String WorkerId = null;
public String Phone = null;
public UUID getCompanyId() { return CompanyId; }
public AdminProfile setCompanyId(UUID value) { this.CompanyId = value; return this; }
public UUID getId() { return Id; }
public AdminProfile setId(UUID value) { this.Id = value; return this; }
public String getFirstname() { return Firstname; }
public AdminProfile setFirstname(String value) { this.Firstname = value; return this; }
public String getLastname() { return Lastname; }
public AdminProfile setLastname(String value) { this.Lastname = value; return this; }
public String getEmail() { return Email; }
public AdminProfile setEmail(String value) { this.Email = value; return this; }
public String getWorkerId() { return WorkerId; }
public AdminProfile setWorkerId(String value) { this.WorkerId = value; return this; }
public String getPhone() { return Phone; }
public AdminProfile setPhone(String value) { this.Phone = 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.
PUT /users HTTP/1.1
Host: testapi.bokamera.se
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateUser xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos">
<AdminProfile>
<Email>String</Email>
<Firstname>String</Firstname>
<Lastname>String</Lastname>
<Phone>String</Phone>
</AdminProfile>
<InvoiceAddress>
<CorporateIdentityNumber>String</CorporateIdentityNumber>
<InvoiceAddress1>String</InvoiceAddress1>
<InvoiceAddress2>String</InvoiceAddress2>
<InvoiceCity>String</InvoiceCity>
<InvoiceCountryCode>String</InvoiceCountryCode>
<InvoicePostalCode>String</InvoicePostalCode>
</InvoiceAddress>
<NewEmail>String</NewEmail>
<Realm>BookMore</Realm>
<UserId>00000000-0000-0000-0000-000000000000</UserId>
<UserProfile>
<Email>String</Email>
<Firstname>String</Firstname>
<InvoiceAddress>
<CorporateIdentityNumber>String</CorporateIdentityNumber>
<InvoiceAddress1>String</InvoiceAddress1>
<InvoiceAddress2>String</InvoiceAddress2>
<InvoiceAddressId>00000000-0000-0000-0000-000000000000</InvoiceAddressId>
<InvoiceCity>String</InvoiceCity>
<InvoiceCountryCode>String</InvoiceCountryCode>
<InvoicePostalCode>String</InvoicePostalCode>
<UserId>00000000-0000-0000-0000-000000000000</UserId>
</InvoiceAddress>
<Lastname>String</Lastname>
<Phone>String</Phone>
</UserProfile>
</UpdateUser>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <UpdateUserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BokaMera.API.ServiceModel.Dtos"> <AdminProfile> <CompanyId>00000000-0000-0000-0000-000000000000</CompanyId> <Email>String</Email> <Firstname>String</Firstname> <Id>00000000-0000-0000-0000-000000000000</Id> <Lastname>String</Lastname> <Phone>String</Phone> <WorkerId>String</WorkerId> </AdminProfile> <InvoiceAddress> <CorporateIdentityNumber>String</CorporateIdentityNumber> <InvoiceAddress1>String</InvoiceAddress1> <InvoiceAddress2>String</InvoiceAddress2> <InvoiceAddressId>00000000-0000-0000-0000-000000000000</InvoiceAddressId> <InvoiceCity>String</InvoiceCity> <InvoiceCountryCode>String</InvoiceCountryCode> <InvoicePostalCode>String</InvoicePostalCode> <UserId>00000000-0000-0000-0000-000000000000</UserId> </InvoiceAddress> <IsSentConfirmationUpdateEmail>false</IsSentConfirmationUpdateEmail> <ResponseStatus /> <UserId>00000000-0000-0000-0000-000000000000</UserId> <UserProfile> <Email>String</Email> <Firstname>String</Firstname> <Id>00000000-0000-0000-0000-000000000000</Id> <InvoiceAddress> <CorporateIdentityNumber>String</CorporateIdentityNumber> <InvoiceAddress1>String</InvoiceAddress1> <InvoiceAddress2>String</InvoiceAddress2> <InvoiceAddressId>00000000-0000-0000-0000-000000000000</InvoiceAddressId> <InvoiceCity>String</InvoiceCity> <InvoiceCountryCode>String</InvoiceCountryCode> <InvoicePostalCode>String</InvoicePostalCode> <UserId>00000000-0000-0000-0000-000000000000</UserId> </InvoiceAddress> <Lastname>String</Lastname> <Phone>String</Phone> </UserProfile> </UpdateUserResponse>