POST v1/Shops/{shopId}/SetOrderStatusesManagedByShopCtrl

Sets the Order's statuses managed by ShopCtrl.

Request Information

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
shopId

The Id of the Shop

integer

Required.

Body Parameters

The settings

AutoSetOrderStatusesSettings
NameDescriptionTypeAdditional information
MainStatus

boolean

None.

PaymentStatus

boolean

None.

StockStatus

boolean

None.

FulfilmentStatus

boolean

None.

ShipmentStatus

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "MainStatus": true,
  "PaymentStatus": true,
  "StockStatus": true,
  "FulfilmentStatus": true,
  "ShipmentStatus": true
}

application/xml, text/xml

Sample:
<AutoSetOrderStatusesSettings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MainStatus>true</MainStatus>
  <PaymentStatus>true</PaymentStatus>
  <StockStatus>true</StockStatus>
  <FulfilmentStatus>true</FulfilmentStatus>
  <ShipmentStatus>true</ShipmentStatus>
</AutoSetOrderStatusesSettings>

Response Information

Response Codes

  • OK (200)
  • NotFound (404)

Resource Description

The HttpResponseMessage object.


HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.