| POST | /salesReps/{brand}/{posCode} | Create Sales Reps |
|---|
export class CreateSalesRepResponse
{
/** @description Booster user ID of sales representative */
// @ApiMember(Description="Booster user ID of sales representative", IsRequired=true)
public userId: string;
public constructor(init?: Partial<CreateSalesRepResponse>) { (Object as any).assign(this, init); }
}
export class CreateSalesRep
{
/** @description Brand Triagram, e.g. CAR, IWC, VAC */
// @ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true)
public brand: string;
/** @description Point of Sale Code, e.g. ES100:102048 */
// @ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true)
public posCode: string;
/** @description First name of sales representative */
// @ApiMember(Description="First name of sales representative", IsRequired=true)
public firstName: string;
/** @description Last name of sales representative */
// @ApiMember(Description="Last name of sales representative", IsRequired=true)
public lastName: string;
/** @description Email address of sales representative */
// @ApiMember(Description="Email address of sales representative", IsRequired=true)
public email: string;
public constructor(init?: Partial<CreateSalesRep>) { (Object as any).assign(this, init); }
}
TypeScript CreateSalesRep DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=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"}