Richemont.Booster2.PublicApi

<back to all web services

UpdateEquipmentWarranty

Requires Authentication
The following routes are available for this service:
PATCH/warranty/equipmentUpdate Equipment WarrantyUpdate Equipment Warranty API
import Foundation
import ServiceStack

public class UpdateEquipmentWarranty : Codable
{
    /**
    * Brand Trigram, e.g. CAR, IWC
    */
    // @ApiMember(Description="Brand Trigram, e.g. CAR, IWC", IsRequired=true)
    public var brand:String

    /**
    * POS code, e.g. 102048
    */
    // @ApiMember(Description="POS code, e.g. 102048", IsRequired=true)
    public var posCode:String

    /**
    * Equipment number, e.g. 1234567890
    */
    // @ApiMember(Description="Equipment number, e.g. 1234567890", IsRequired=true)
    public var equipmentNumber:String

    /**
    * Warranty type, e.g. 3
    */
    // @ApiMember(Description="Warranty type, e.g. 3", IsRequired=true)
    public var warrantyType:String

    /**
    * 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 var warrantyStartDate:Date

    required public init(){}
}

public class UpdateEquipmentWarrantyResponse : Codable
{
    /**
    * Equipment number
    */
    // @ApiMember(Description="Equipment number", IsRequired=true)
    public var equipment:String

    /**
    * Warranty type
    */
    // @ApiMember(Description="Warranty type", IsRequired=true)
    public var warrantyType:String

    /**
    * Master warranty
    */
    // @ApiMember(Description="Master warranty", IsRequired=true)
    public var masterWarranty:String

    /**
    * Warranty start date
    */
    // @ApiMember(Description="Warranty start date", IsRequired=true)
    public var warrantyStartDate:String

    /**
    * Warranty end date
    */
    // @ApiMember(Description="Warranty end date")
    public var warrantyEndDate:String

    /**
    * Warranty creation date
    */
    // @ApiMember(Description="Warranty creation date", IsRequired=true)
    public var warrantyCreationDate:String

    /**
    * Warranty creation time
    */
    // @ApiMember(Description="Warranty creation time", IsRequired=true)
    public var warrantyCreationTime:String

    /**
    * Object number (ERP)
    */
    // @ApiMember(Description="Object number (ERP)", IsRequired=true)
    public var objectNumber:String

    /**
    * Sales Force Sellout ID
    */
    // @ApiMember(Description="Sales Force Sellout ID", IsRequired=true)
    public var sfSelloutId:String

    required public init(){}
}


Swift UpdateEquipmentWarranty DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

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/jsonl
Content-Type: text/jsonl
Content-Length: length

{"brand":"String","posCode":"String","equipmentNumber":"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","sfSelloutId":"String"}