Richemont.Booster2.PublicApi

<back to all web services

AcceptDelivery

Requires Authentication
The following routes are available for this service:
POST/stock/{brand}/acceptDeliveryManual Order Reception
namespace Richemont.Booster2.PublicApi.Stock.ServiceModel

open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<AllowNullLiteral>]
    type AcceptDeliveryResponse() = 
        class end

    [<AllowNullLiteral>]
    type AcceptDeliveryNoteItem() = 
        ///<summary>
        ///Delivery Notes Number, e.g. 7040123456
        ///</summary>
        [<ApiMember(Description="Delivery Notes Number, e.g. 7040123456", IsRequired=true)>]
        member val deliveryNotesNumber:Int64 = new Int64() with get,set

        ///<summary>
        ///Delivery Notes Date, e.g. 2022-10-10
        ///</summary>
        [<ApiMember(Description="Delivery Notes Date, e.g. 2022-10-10", IsRequired=true)>]
        member val deliveryNotesDate:DateTime = new DateTime() with get,set

        ///<summary>
        ///Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10
        ///</summary>
        [<ApiMember(Description="Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10", IsRequired=true)>]
        member val deliveryNotesLineNumber:Int32 = new Int32() with get,set

    [<AllowNullLiteral>]
    type AcceptDelivery() = 
        ///<summary>
        ///Brand
        ///</summary>
        [<ApiMember(Description="Brand", IsRequired=true)>]
        member val brand:String = null with get,set

        ///<summary>
        ///Pos Legacy Code with Legacy System ID, e.g. ES123:123456
        ///</summary>
        [<ApiMember(Description="Pos Legacy Code with Legacy System ID, e.g. ES123:123456", IsRequired=true)>]
        member val posCode:String = null with get,set

        ///<summary>
        ///Received deliveries
        ///</summary>
        [<ApiMember(Description="Received deliveries", IsRequired=true)>]
        member val deliveryNotes:ResizeArray<AcceptDeliveryNoteItem> = null with get,set

F# AcceptDelivery 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 /stock/{brand}/acceptDelivery HTTP/1.1 
Host: dev-api-booster.richemont.com 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<AcceptDelivery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
  <brand>String</brand>
  <deliveryNotes>
    <AcceptDeliveryNoteItem>
      <deliveryNotesDate>0001-01-01T00:00:00</deliveryNotesDate>
      <deliveryNotesLineNumber>0</deliveryNotesLineNumber>
      <deliveryNotesNumber>0</deliveryNotesNumber>
    </AcceptDeliveryNoteItem>
  </deliveryNotes>
  <posCode>String</posCode>
</AcceptDelivery>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<AcceptDeliveryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel" />