GET v1/Settings/DeliveryTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of DeliveryTypeViewModel
NameDescriptionTypeAdditional information
DeliveryType_Id

integer

None.

Name

string

None.

Code

string

None.

Text

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DeliveryType_Id": 1,
    "Name": "sample string 2",
    "Code": "sample string 3",
    "Text": "sample string 4"
  },
  {
    "DeliveryType_Id": 1,
    "Name": "sample string 2",
    "Code": "sample string 3",
    "Text": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDeliveryTypeViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dealerportal.Shared.ViewModels.v1.Settings">
  <DeliveryTypeViewModel>
    <Code>sample string 3</Code>
    <DeliveryType_Id>1</DeliveryType_Id>
    <Name>sample string 2</Name>
    <Text>sample string 4</Text>
  </DeliveryTypeViewModel>
  <DeliveryTypeViewModel>
    <Code>sample string 3</Code>
    <DeliveryType_Id>1</DeliveryType_Id>
    <Name>sample string 2</Name>
    <Text>sample string 4</Text>
  </DeliveryTypeViewModel>
</ArrayOfDeliveryTypeViewModel>