TicketUserServices

<back to all web services

WebshopVariantRestockRequest

Requires Authentication
Requires any of the roles:Admin, TeamAdminRequired permission:Tickets.Add
The following routes are available for this service:
POST/Webshop/Variant/Restock
WebshopVariantRestockRequest Parameters:
NameParameterData TypeRequiredDescription
VariantIdbodyintNo
KindbodystringNo
QuantitybodyintNo
NotebodystringNo
IdempotencyKeybodystringNo
OwnerIdbodyint?No
WebshopVariantResult Parameters:
NameParameterData TypeRequiredDescription
VariantformWebshopVariantSummaryNo
StatusCodeformintNo
MessageformstringNo
WebshopVariantSummary Parameters:
NameParameterData TypeRequiredDescription
IDformintNo
ProductIdformintNo
SizeformstringNo
ColorformstringNo
StockOnHandformintNo
QuantitySoldformintNo
AvailableQuantityformintNo
StatusformstringNo

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 /Webshop/Variant/Restock HTTP/1.1 
Host: stubbur-app.azurewebsites.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<WebshopVariantRestockRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
  <IdempotencyKey>String</IdempotencyKey>
  <Kind>String</Kind>
  <Note>String</Note>
  <OwnerId>0</OwnerId>
  <Quantity>0</Quantity>
  <VariantId>0</VariantId>
</WebshopVariantRestockRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<WebshopVariantResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TicketUserServices.ServiceModel">
  <Message>String</Message>
  <StatusCode>0</StatusCode>
  <Variant>
    <AvailableQuantity>0</AvailableQuantity>
    <Color>String</Color>
    <ID>0</ID>
    <ProductId>0</ProductId>
    <QuantitySold>0</QuantitySold>
    <Size>String</Size>
    <Status>String</Status>
    <StockOnHand>0</StockOnHand>
  </Variant>
</WebshopVariantResult>