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
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class AcceptDelivery
    {
        /**
        * Brand
        */
        @ApiMember(Description="Brand", IsRequired=true)
        public String brand = null;

        /**
        * Pos Legacy Code with Legacy System ID, e.g. ES123:123456
        */
        @ApiMember(Description="Pos Legacy Code with Legacy System ID, e.g. ES123:123456", IsRequired=true)
        public String posCode = null;

        /**
        * Received deliveries
        */
        @ApiMember(Description="Received deliveries", IsRequired=true)
        public ArrayList<AcceptDeliveryNoteItem> deliveryNotes = null;
        
        public String getBrand() { return brand; }
        public AcceptDelivery setBrand(String value) { this.brand = value; return this; }
        public String getPosCode() { return posCode; }
        public AcceptDelivery setPosCode(String value) { this.posCode = value; return this; }
        public ArrayList<AcceptDeliveryNoteItem> getDeliveryNotes() { return deliveryNotes; }
        public AcceptDelivery setDeliveryNotes(ArrayList<AcceptDeliveryNoteItem> value) { this.deliveryNotes = value; return this; }
    }

    public static class AcceptDeliveryNoteItem
    {
        /**
        * Delivery Notes Number, e.g. 7040123456
        */
        @ApiMember(Description="Delivery Notes Number, e.g. 7040123456", IsRequired=true)
        public Long deliveryNotesNumber = null;

        /**
        * Delivery Notes Date, e.g. 2022-10-10
        */
        @ApiMember(Description="Delivery Notes Date, e.g. 2022-10-10", IsRequired=true)
        public Date deliveryNotesDate = null;

        /**
        * Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10
        */
        @ApiMember(Description="Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10", IsRequired=true)
        public Integer deliveryNotesLineNumber = null;

        /**
        * ReceivedQuantity, e.g. 2
        */
        @ApiMember(Description="ReceivedQuantity, e.g. 2", IsRequired=true)
        public Integer receivedQuantity = null;

        /**
        * Serial Numbers, e.g. '6361234', '6361235'
        */
        @ApiMember(Description="Serial Numbers, e.g. '6361234', '6361235'")
        public ArrayList<String> serialNumbers = null;
        
        public Long getDeliveryNotesNumber() { return deliveryNotesNumber; }
        public AcceptDeliveryNoteItem setDeliveryNotesNumber(Long value) { this.deliveryNotesNumber = value; return this; }
        public Date getDeliveryNotesDate() { return deliveryNotesDate; }
        public AcceptDeliveryNoteItem setDeliveryNotesDate(Date value) { this.deliveryNotesDate = value; return this; }
        public Integer getDeliveryNotesLineNumber() { return deliveryNotesLineNumber; }
        public AcceptDeliveryNoteItem setDeliveryNotesLineNumber(Integer value) { this.deliveryNotesLineNumber = value; return this; }
        public Integer getReceivedQuantity() { return receivedQuantity; }
        public AcceptDeliveryNoteItem setReceivedQuantity(Integer value) { this.receivedQuantity = value; return this; }
        public ArrayList<String> getSerialNumbers() { return serialNumbers; }
        public AcceptDeliveryNoteItem setSerialNumbers(ArrayList<String> value) { this.serialNumbers = value; return this; }
    }

    public static class AcceptDeliveryResponse
    {
        
    }

}

Java 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>
      <receivedQuantity>0</receivedQuantity>
      <serialNumbers xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
        <d4p1:string>String</d4p1:string>
      </serialNumbers>
    </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" />