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}/transferBulk HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<TransferStockBulk xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<brand>String</brand>
<items>
<Item>
<articleCode>String</articleCode>
<quantity>0</quantity>
<serialNumbers xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>String</d4p1:string>
</serialNumbers>
</Item>
</items>
<posCodeDestination>String</posCodeDestination>
<posCodeOrigin>String</posCodeOrigin>
</TransferStockBulk>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<TransferStockBulkResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<items>
<ItemResponse>
<articleCode>String</articleCode>
<errors xmlns:d4p1="http://schemas.datacontract.org/2004/07/Richemont.Booster2.Common.Poco.Entities">
<d4p1:LookupOfstring>
<d4p1:Description>String</d4p1:Description>
<d4p1:Id>String</d4p1:Id>
</d4p1:LookupOfstring>
</errors>
<stockTransferStatusId>0</stockTransferStatusId>
</ItemResponse>
</items>
</TransferStockBulkResponse>