Richemont.Booster2.PublicApi

<back to all web services

CreateEquipmentWarranty

Requires Authentication
The following routes are available for this service:
POST/warranty/equipmentCreate Equipment WarrantyCreate Equipment Warranty API
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Richemont.Booster2.PublicApi.Sellout.ServiceModel

Namespace Global

    Namespace Richemont.Booster2.PublicApi.Sellout.ServiceModel

        Public Partial Class CreateEquipmentWarranty
            '''<Summary>
            '''Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided
            '''</Summary>
            <ApiMember(Description:="Brand Trigram, e.g. CAR, IWC; compulsory only if articleCode is not provided")>
            Public Overridable Property brand As String

            '''<Summary>
            '''Richemont POS code
            '''</Summary>
            <ApiMember(Description:="Richemont POS code", IsRequired:=true)>
            Public Overridable Property posCode As String

            '''<Summary>
            '''Equipment
            '''</Summary>
            <ApiMember(Description:="Equipment", IsRequired:=true)>
            Public Overridable Property equipment As String

            '''<Summary>
            '''Warranty type
            '''</Summary>
            <ApiMember(Description:="Warranty type", IsRequired:=true)>
            Public Overridable Property warrantyType As String

            '''<Summary>
            '''Date of the warranty start date e.g. 2025-06-01
            '''</Summary>
            <ApiMember(Description:="Date of the warranty start date e.g. 2025-06-01", IsRequired:=true)>
            Public Overridable Property warrantyStartDate As Date
        End Class

        Public Partial Class CreateEquipmentWarrantyResponse
            '''<Summary>
            '''Equipment number
            '''</Summary>
            <ApiMember(Description:="Equipment number", IsRequired:=true)>
            Public Overridable Property equipment As String

            '''<Summary>
            '''Warranty type
            '''</Summary>
            <ApiMember(Description:="Warranty type", IsRequired:=true)>
            Public Overridable Property warrantyType As String

            '''<Summary>
            '''Master warranty
            '''</Summary>
            <ApiMember(Description:="Master warranty", IsRequired:=true)>
            Public Overridable Property masterWarranty As String

            '''<Summary>
            '''Warranty start date
            '''</Summary>
            <ApiMember(Description:="Warranty start date", IsRequired:=true)>
            Public Overridable Property warrantyStartDate As String

            '''<Summary>
            '''Warranty end date
            '''</Summary>
            <ApiMember(Description:="Warranty end date")>
            Public Overridable Property warrantyEndDate As String

            '''<Summary>
            '''Warranty creation date
            '''</Summary>
            <ApiMember(Description:="Warranty creation date", IsRequired:=true)>
            Public Overridable Property warrantyCreationDate As String

            '''<Summary>
            '''Warranty creation time
            '''</Summary>
            <ApiMember(Description:="Warranty creation time", IsRequired:=true)>
            Public Overridable Property warrantyCreationTime As String

            '''<Summary>
            '''Object number (ERP)
            '''</Summary>
            <ApiMember(Description:="Object number (ERP)", IsRequired:=true)>
            Public Overridable Property objectNumber As String
        End Class
    End Namespace
End Namespace

VB.NET CreateEquipmentWarranty DTOs

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

HTTP + 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>