GET api/deliverytypes

Gets a list of available delivery types.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of delivery types

Collection of DeliveryType
NameDescriptionTypeAdditional information
DeliveryTypeDescription

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "deliveryTypeDescription": "sample string 1"
  },
  {
    "deliveryTypeDescription": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDeliveryType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProIT.MobileConnector.ORM.Entities">
  <DeliveryType>
    <DeliveryTypeDescription>sample string 1</DeliveryTypeDescription>
  </DeliveryType>
  <DeliveryType>
    <DeliveryTypeDescription>sample string 1</DeliveryTypeDescription>
  </DeliveryType>
</ArrayOfDeliveryType>