| POST | /warranty/equipment | Create Equipment Warranty | Create Equipment Warranty API |
|---|
export class CreateEquipmentWarrantyResponse
{
/** @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;
public constructor(init?: Partial<CreateEquipmentWarrantyResponse>) { (Object as any).assign(this, init); }
}
export class CreateEquipmentWarranty
{
/** @description Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided */
// @ApiMember(Description="Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided")
public brand: string;
/** @description Richemont POS code */
// @ApiMember(Description="Richemont POS code", IsRequired=true)
public posCode: string;
/** @description Equipment */
// @ApiMember(Description="Equipment", IsRequired=true)
public equipment: string;
/** @description Warranty type */
// @ApiMember(Description="Warranty type", 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<CreateEquipmentWarranty>) { (Object as any).assign(this, init); }
}
TypeScript 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>