| POST | /warranty/equipment | Create Equipment Warranty | Create Equipment Warranty API |
|---|
"use strict";
export class CreateEquipmentWarrantyResponse {
/** @param {{equipment?:string,warrantyType?:string,masterWarranty?:string,warrantyStartDate?:string,warrantyEndDate?:string,warrantyCreationDate?:string,warrantyCreationTime?:string,objectNumber?: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;
}
export class CreateEquipmentWarranty {
/** @param {{brand?:string,posCode?:string,equipment?:string,warrantyType?:string,warrantyStartDate?:string}} [init] */
constructor(init) { Object.assign(this, init) }
/**
* @type {string}
* @description Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided */
brand;
/**
* @type {string}
* @description Richemont POS code */
posCode;
/**
* @type {string}
* @description Equipment */
equipment;
/**
* @type {string}
* @description Warranty type */
warrantyType;
/**
* @type {string}
* @description Date of the warranty start date e.g. 2025-06-01 */
warrantyStartDate;
}
JavaScript CreateEquipmentWarranty DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /warranty/equipment HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<CreateEquipmentWarranty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Sellout.ServiceModel">
<brand>String</brand>
<equipment>String</equipment>
<posCode>String</posCode>
<warrantyStartDate>0001-01-01T00:00:00</warrantyStartDate>
<warrantyType>String</warrantyType>
</CreateEquipmentWarranty>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <CreateEquipmentWarrantyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Sellout.ServiceModel"> <equipment>String</equipment> <masterWarranty>String</masterWarranty> <objectNumber>String</objectNumber> <warrantyCreationDate>String</warrantyCreationDate> <warrantyCreationTime>String</warrantyCreationTime> <warrantyEndDate>String</warrantyEndDate> <warrantyStartDate>String</warrantyStartDate> <warrantyType>String</warrantyType> </CreateEquipmentWarrantyResponse>