| POST | /warranty/equipment | Create Equipment Warranty | Create Equipment Warranty API |
|---|
import java.math.*
import java.util.*
import net.servicestack.client.*
open class CreateEquipmentWarranty
{
/**
* 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")
var brand:String? = null
/**
* Richemont POS code
*/
@ApiMember(Description="Richemont POS code", IsRequired=true)
var posCode:String? = null
/**
* Equipment
*/
@ApiMember(Description="Equipment", IsRequired=true)
var equipment:String? = null
/**
* Warranty type
*/
@ApiMember(Description="Warranty type", 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 CreateEquipmentWarrantyResponse
{
/**
* 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
}
Kotlin CreateEquipmentWarranty DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
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: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"brand":"String","posCode":"String","equipment":"String","warrantyType":"String","warrantyStartDate":"\/Date(-62135596800000-0000)\/"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length
{"equipment":"String","warrantyType":"String","masterWarranty":"String","warrantyStartDate":"String","warrantyEndDate":"String","warrantyCreationDate":"String","warrantyCreationTime":"String","objectNumber":"String"}