| PATCH | /warranty/equipment | Update Equipment Warranty | Update Equipment Warranty API |
|---|
export class UpdateEquipmentWarrantyResponse
{
/** @description Equipment number */
// @ApiMember(Description="Equipment number", IsRequired=true)
public equipment: string;
/** @description Warranty type */
// @ApiMember(Description="Warranty type", IsRequired=true)
public warrantyType: string;
/** @description Master warranty */
// @ApiMember(Description="Master warranty", IsRequired=true)
public masterWarranty: string;
/** @description Warranty start date */
// @ApiMember(Description="Warranty start date", IsRequired=true)
public warrantyStartDate: string;
/** @description Warranty end date */
// @ApiMember(Description="Warranty end date")
public warrantyEndDate: string;
/** @description Warranty creation date */
// @ApiMember(Description="Warranty creation date", IsRequired=true)
public warrantyCreationDate: string;
/** @description Warranty creation time */
// @ApiMember(Description="Warranty creation time", IsRequired=true)
public warrantyCreationTime: string;
/** @description Object number (ERP) */
// @ApiMember(Description="Object number (ERP)", IsRequired=true)
public objectNumber: string;
/** @description Sales Force Sellout ID */
// @ApiMember(Description="Sales Force Sellout ID", IsRequired=true)
public sfSelloutId: string;
public constructor(init?: Partial<UpdateEquipmentWarrantyResponse>) { (Object as any).assign(this, init); }
}
export class UpdateEquipmentWarranty
{
/** @description Brand Trigram, e.g. CAR, IWC */
// @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)
public brand: string;
/** @description POS code, e.g. 102048 */
// @ApiMember(Description="POS code, e.g. 102048", IsRequired=true)
public posCode: string;
/** @description Equipment number, e.g. 1234567890 */
// @ApiMember(Description="Equipment number, e.g. 1234567890", IsRequired=true)
public equipmentNumber: string;
/** @description Warranty type, e.g. 3 */
// @ApiMember(Description="Warranty type, e.g. 3", IsRequired=true)
public warrantyType: string;
/** @description Date of the warranty start date e.g. 2025-06-01 */
// @ApiMember(Description="Date of the warranty start date e.g. 2025-06-01", IsRequired=true)
public warrantyStartDate: string;
public constructor(init?: Partial<UpdateEquipmentWarranty>) { (Object as any).assign(this, init); }
}
TypeScript UpdateEquipmentWarranty DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
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/jsv
Content-Type: text/jsv
Content-Length: length
{
brand: String,
posCode: String,
equipmentNumber: String,
warrantyType: String,
warrantyStartDate: 0001-01-01
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
equipment: String,
warrantyType: String,
masterWarranty: String,
warrantyStartDate: String,
warrantyEndDate: String,
warrantyCreationDate: String,
warrantyCreationTime: String,
objectNumber: String,
sfSelloutId: String
}