| PATCH | /warranty/equipment | Update Equipment Warranty | Update Equipment Warranty API |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class UpdateEquipmentWarranty
{
/**
* Brand Trigram, e.g. CAR, IWC
*/
@ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)
var brand:String? = null
/**
* POS code, e.g. 102048
*/
@ApiMember(Description="POS code, e.g. 102048", IsRequired=true)
var posCode:String? = null
/**
* Equipment number, e.g. 1234567890
*/
@ApiMember(Description="Equipment number, e.g. 1234567890", IsRequired=true)
var equipmentNumber:String? = null
/**
* Warranty type, e.g. 3
*/
@ApiMember(Description="Warranty type, e.g. 3", IsRequired=true)
var warrantyType:String? = null
/**
* 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)
var warrantyStartDate:Date? = null
}
open class UpdateEquipmentWarrantyResponse
{
/**
* Equipment number
*/
@ApiMember(Description="Equipment number", IsRequired=true)
var equipment:String? = null
/**
* Warranty type
*/
@ApiMember(Description="Warranty type", IsRequired=true)
var warrantyType:String? = null
/**
* Master warranty
*/
@ApiMember(Description="Master warranty", IsRequired=true)
var masterWarranty:String? = null
/**
* Warranty start date
*/
@ApiMember(Description="Warranty start date", IsRequired=true)
var warrantyStartDate:String? = null
/**
* Warranty end date
*/
@ApiMember(Description="Warranty end date")
var warrantyEndDate:String? = null
/**
* Warranty creation date
*/
@ApiMember(Description="Warranty creation date", IsRequired=true)
var warrantyCreationDate:String? = null
/**
* Warranty creation time
*/
@ApiMember(Description="Warranty creation time", IsRequired=true)
var warrantyCreationTime:String? = null
/**
* Object number (ERP)
*/
@ApiMember(Description="Object number (ERP)", IsRequired=true)
var objectNumber:String? = null
/**
* Sales Force Sellout ID
*/
@ApiMember(Description="Sales Force Sellout ID", IsRequired=true)
var sfSelloutId:String? = null
}
Kotlin UpdateEquipmentWarranty 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.
PATCH /warranty/equipment HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateEquipmentWarranty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Sellout.ServiceModel">
<brand>String</brand>
<equipmentNumber>String</equipmentNumber>
<posCode>String</posCode>
<warrantyStartDate>0001-01-01T00:00:00</warrantyStartDate>
<warrantyType>String</warrantyType>
</UpdateEquipmentWarranty>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <UpdateEquipmentWarrantyResponse 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> <sfSelloutId>String</sfSelloutId> <warrantyCreationDate>String</warrantyCreationDate> <warrantyCreationTime>String</warrantyCreationTime> <warrantyEndDate>String</warrantyEndDate> <warrantyStartDate>String</warrantyStartDate> <warrantyType>String</warrantyType> </UpdateEquipmentWarrantyResponse>