| POST | /salesReps/{brand}/{posCode} | Create Sales Reps |
|---|
"use strict";
export class CreateSalesRepResponse {
/** @param {{userId?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Booster user ID of sales representative */
userId;
}
export class CreateSalesRep {
/** @param {{brand?:string,posCode?:string,firstName?:string,lastName?:string,email?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Brand Triagram, e.g. CAR, IWC, VAC */
brand;
/**
* @type {string}
* @description Point of Sale Code, e.g. ES100:102048 */
posCode;
/**
* @type {string}
* @description First name of sales representative */
firstName;
/**
* @type {string}
* @description Last name of sales representative */
lastName;
/**
* @type {string}
* @description Email address of sales representative */
email;
}
JavaScript 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"}