digitaluapi

<back to all web services

AvatarsAdd

Requires Authentication
Requires any of the roles:Client, Admin, Partner
The following routes are available for this service:
POST/avatars
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    @DataContract
    public static class AvatarsAdd
    {
        @DataMember(Order=2)
        @Validate(Validator="NotNull")
        public Integer TenantsId = null;

        @DataMember(Order=3)
        @Validate(Validator="NotNull")
        public String Name = null;

        @DataMember(Order=4)
        @Validate(Validator="NotNull")
        public String Gender = null;

        @DataMember(Order=5)
        @Validate(Validator="NotNull")
        public String AgeGroup = null;

        @DataMember(Order=6)
        @Validate(Validator="NotNull")
        public String Style = null;

        @DataMember(Order=7)
        @Validate(Validator="NotNull")
        public String ImageUrl = null;

        @DataMember(Order=8)
        @Validate(Validator="NotNull")
        public String EthnicGroup = null;
        
        public Integer getTenantsId() { return TenantsId; }
        public AvatarsAdd setTenantsId(Integer value) { this.TenantsId = value; return this; }
        public String getName() { return Name; }
        public AvatarsAdd setName(String value) { this.Name = value; return this; }
        public String getGender() { return Gender; }
        public AvatarsAdd setGender(String value) { this.Gender = value; return this; }
        public String getAgeGroup() { return AgeGroup; }
        public AvatarsAdd setAgeGroup(String value) { this.AgeGroup = value; return this; }
        public String getStyle() { return Style; }
        public AvatarsAdd setStyle(String value) { this.Style = value; return this; }
        public String getImageUrl() { return ImageUrl; }
        public AvatarsAdd setImageUrl(String value) { this.ImageUrl = value; return this; }
        public String getEthnicGroup() { return EthnicGroup; }
        public AvatarsAdd setEthnicGroup(String value) { this.EthnicGroup = value; return this; }
    }

    public static class AvatarsAddResponse
    {
        @DataMember(Order=2)
        public Integer TenantsId = null;

        @DataMember(Order=3)
        public String Name = null;

        @DataMember(Order=4)
        public String Gender = null;

        @DataMember(Order=5)
        public String AgeGroup = null;

        @DataMember(Order=6)
        public String Style = null;

        @DataMember(Order=7)
        public String ImageUrl = null;

        @DataMember(Order=8)
        public String EthnicGroup = null;

        @DataMember(Order=10)
        public ResponseStatus ResponseStatus = null;
        
        public Integer getTenantsId() { return TenantsId; }
        public AvatarsAddResponse setTenantsId(Integer value) { this.TenantsId = value; return this; }
        public String getName() { return Name; }
        public AvatarsAddResponse setName(String value) { this.Name = value; return this; }
        public String getGender() { return Gender; }
        public AvatarsAddResponse setGender(String value) { this.Gender = value; return this; }
        public String getAgeGroup() { return AgeGroup; }
        public AvatarsAddResponse setAgeGroup(String value) { this.AgeGroup = value; return this; }
        public String getStyle() { return Style; }
        public AvatarsAddResponse setStyle(String value) { this.Style = value; return this; }
        public String getImageUrl() { return ImageUrl; }
        public AvatarsAddResponse setImageUrl(String value) { this.ImageUrl = value; return this; }
        public String getEthnicGroup() { return EthnicGroup; }
        public AvatarsAddResponse setEthnicGroup(String value) { this.EthnicGroup = value; return this; }
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public AvatarsAddResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
    }

}

Java AvatarsAdd 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 /avatars HTTP/1.1 
Host: duengageapi.uat.scadsoftware.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<AvatarsAdd xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel">
  <TenantsId>0</TenantsId>
  <Name>String</Name>
  <Gender>String</Gender>
  <AgeGroup>String</AgeGroup>
  <Style>String</Style>
  <ImageUrl>String</ImageUrl>
  <EthnicGroup>String</EthnicGroup>
</AvatarsAdd>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<AvatarsAddResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/digitaluapi.ServiceModel">
  <AgeGroup>String</AgeGroup>
  <EthnicGroup>String</EthnicGroup>
  <Gender>String</Gender>
  <ImageUrl>String</ImageUrl>
  <Name>String</Name>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1: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>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1: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>
    </d2p1:Meta>
  </ResponseStatus>
  <Style>String</Style>
  <TenantsId>0</TenantsId>
</AvatarsAddResponse>