GET v1/OrderStatusTypes

Get a list with the Order Status types.

Request Information

Requires Authorization!

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The available order status types.


Collection of OrderStatusType
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

Code

Gets or sets the code.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Code": "sample string 2"
  },
  {
    "Id": 1,
    "Code": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOrderStatusType xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <OrderStatusType>
    <Id>1</Id>
    <Code>sample string 2</Code>
  </OrderStatusType>
  <OrderStatusType>
    <Id>1</Id>
    <Code>sample string 2</Code>
  </OrderStatusType>
</ArrayOfOrderStatusType>