Richemont.Booster2.PublicApi

<back to all web services

CreateSalesRep

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

}

Java CreateSalesRep DTOs

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

HTTP + OTHER

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: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"brand":"String","posCode":"String","firstName":"String","lastName":"String","email":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"userId":"00000000000000000000000000000000"}