| POST | /stock/{brand}/acceptDelivery | Manual Order Reception |
|---|
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Richemont.Booster2.PublicApi.Stock.ServiceModel
Namespace Global
Namespace Richemont.Booster2.PublicApi.Stock.ServiceModel
Public Partial Class AcceptDelivery
Public Sub New()
deliveryNotes = New List(Of AcceptDeliveryNoteItem)
End Sub
'''<Summary>
'''Brand
'''</Summary>
<ApiMember(Description:="Brand", IsRequired:=true)>
Public Overridable Property brand As String
'''<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)>
Public Overridable Property posCode As String
'''<Summary>
'''Received deliveries
'''</Summary>
<ApiMember(Description:="Received deliveries", IsRequired:=true)>
Public Overridable Property deliveryNotes As List(Of AcceptDeliveryNoteItem)
End Class
Public Partial Class AcceptDeliveryNoteItem
Public Sub New()
serialNumbers = New List(Of String)
End Sub
'''<Summary>
'''Delivery Notes Number, e.g. 7040123456
'''</Summary>
<ApiMember(Description:="Delivery Notes Number, e.g. 7040123456", IsRequired:=true)>
Public Overridable Property deliveryNotesNumber As Long
'''<Summary>
'''Delivery Notes Date, e.g. 2022-10-10
'''</Summary>
<ApiMember(Description:="Delivery Notes Date, e.g. 2022-10-10", IsRequired:=true)>
Public Overridable Property deliveryNotesDate As Date
'''<Summary>
'''Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10
'''</Summary>
<ApiMember(Description:="Delivery Notes Line Number (DeliveryNotesNoSplit), e.g. 10", IsRequired:=true)>
Public Overridable Property deliveryNotesLineNumber As Integer
'''<Summary>
'''ReceivedQuantity, e.g. 2
'''</Summary>
<ApiMember(Description:="ReceivedQuantity, e.g. 2", IsRequired:=true)>
Public Overridable Property receivedQuantity As Integer
'''<Summary>
'''Serial Numbers, e.g. '6361234', '6361235'
'''</Summary>
<ApiMember(Description:="Serial Numbers, e.g. '6361234', '6361235'")>
Public Overridable Property serialNumbers As List(Of String)
End Class
Public Partial Class AcceptDeliveryResponse
End Class
End Namespace
End Namespace
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=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" />