| PATCH | /warranty/equipment | Update Equipment Warranty | Update Equipment Warranty API |
|---|
"use strict";
export class UpdateEquipmentWarrantyResponse {
/** @param {{equipment?:string,warrantyType?:string,masterWarranty?:string,warrantyStartDate?:string,warrantyEndDate?:string,warrantyCreationDate?:string,warrantyCreationTime?:string,objectNumber?:string,sfSelloutId?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Equipment number */
equipment;
/**
* @type {string}
* @description Warranty type */
warrantyType;
/**
* @type {string}
* @description Master warranty */
masterWarranty;
/**
* @type {string}
* @description Warranty start date */
warrantyStartDate;
/**
* @type {string}
* @description Warranty end date */
warrantyEndDate;
/**
* @type {string}
* @description Warranty creation date */
warrantyCreationDate;
/**
* @type {string}
* @description Warranty creation time */
warrantyCreationTime;
/**
* @type {string}
* @description Object number (ERP) */
objectNumber;
/**
* @type {string}
* @description Sales Force Sellout ID */
sfSelloutId;
}
export class UpdateEquipmentWarranty {
/** @param {{brand?:string,posCode?:string,equipmentNumber?:string,warrantyType?:string,warrantyStartDate?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Brand Trigram, e.g. CAR, IWC */
brand;
/**
* @type {string}
* @description POS code, e.g. 102048 */
posCode;
/**
* @type {string}
* @description Equipment number, e.g. 1234567890 */
equipmentNumber;
/**
* @type {string}
* @description Warranty type, e.g. 3 */
warrantyType;
/**
* @type {string}
* @description Date of the warranty start date e.g. 2025-06-01 */
warrantyStartDate;
}
JavaScript UpdateEquipmentWarranty DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PATCH /warranty/equipment HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"brand":"String","posCode":"String","equipmentNumber":"String","warrantyType":"String","warrantyStartDate":"\/Date(-62135596800000-0000)\/"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"equipment":"String","warrantyType":"String","masterWarranty":"String","warrantyStartDate":"String","warrantyEndDate":"String","warrantyCreationDate":"String","warrantyCreationTime":"String","objectNumber":"String","sfSelloutId":"String"}