POST v1/SystemSettings/DeliveryMethodList

Request Information

URI Parameters

None.

Body Parameters

DeliveryRequest
NameDescriptionTypeAdditional information
DeliveryMethodID

integer

None.

DeliveryMethodName

string

None.

Active

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "DeliveryMethodID": 1,
  "DeliveryMethodName": "sample string 1",
  "Active": true
}

application/xml, text/xml

Sample:
<DeliveryRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <DeliveryMethodID>1</DeliveryMethodID>
  <DeliveryMethodName>sample string 1</DeliveryMethodName>
  <Active>true</Active>
</DeliveryRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DeliveryRequest'.

Response Information

Resource Description

Collection of DeliveryResponse
NameDescriptionTypeAdditional information
DeliveryMethodID

integer

None.

DeliveryMethodName

string

None.

Active

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DeliveryMethodID": 1,
    "DeliveryMethodName": "sample string 1",
    "Active": true
  },
  {
    "DeliveryMethodID": 1,
    "DeliveryMethodName": "sample string 1",
    "Active": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfDeliveryResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <DeliveryResponse>
    <DeliveryMethodID>1</DeliveryMethodID>
    <DeliveryMethodName>sample string 1</DeliveryMethodName>
    <Active>true</Active>
  </DeliveryResponse>
  <DeliveryResponse>
    <DeliveryMethodID>1</DeliveryMethodID>
    <DeliveryMethodName>sample string 1</DeliveryMethodName>
    <Active>true</Active>
  </DeliveryResponse>
</ArrayOfDeliveryResponse>