| POST | /salesReps/{brand}/{posCode} | Create Sales Reps |
|---|
import java.math.*;
import java.util.*;
import net.servicestack.client.*;
public class dtos
{
public static class CreateSalesRep
{
/**
* Brand Triagram, e.g. CAR, IWC, VAC
*/
@ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true)
public String brand = null;
/**
* Point of Sale Code, e.g. ES100:102048
*/
@ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true)
public String posCode = null;
/**
* First name of sales representative
*/
@ApiMember(Description="First name of sales representative", IsRequired=true)
public String firstName = null;
/**
* Last name of sales representative
*/
@ApiMember(Description="Last name of sales representative", IsRequired=true)
public String lastName = null;
/**
* Email address of sales representative
*/
@ApiMember(Description="Email address of sales representative", IsRequired=true)
public String email = null;
public String getBrand() { return brand; }
public CreateSalesRep setBrand(String value) { this.brand = value; return this; }
public String getPosCode() { return posCode; }
public CreateSalesRep setPosCode(String value) { this.posCode = value; return this; }
public String getFirstName() { return firstName; }
public CreateSalesRep setFirstName(String value) { this.firstName = value; return this; }
public String getLastName() { return lastName; }
public CreateSalesRep setLastName(String value) { this.lastName = value; return this; }
public String getEmail() { return email; }
public CreateSalesRep setEmail(String value) { this.email = value; return this; }
}
public static class CreateSalesRepResponse
{
/**
* Booster user ID of sales representative
*/
@ApiMember(Description="Booster user ID of sales representative", IsRequired=true)
public UUID userId = null;
public UUID getUserId() { return userId; }
public CreateSalesRepResponse setUserId(UUID value) { this.userId = 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 /salesReps/{brand}/{posCode} HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateSalesRep xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.POS.ServiceModel">
<brand>String</brand>
<email>String</email>
<firstName>String</firstName>
<lastName>String</lastName>
<posCode>String</posCode>
</CreateSalesRep>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <CreateSalesRepResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.POS.ServiceModel"> <userId>00000000-0000-0000-0000-000000000000</userId> </CreateSalesRepResponse>