POST v1/SystemSettings/DeliveryMethodList

Return Delivery Method List

This is secure method and requires below attributes in header

Authorization: Midnight Authorize Token

Request Information

URI Parameters

None.

Body Parameters

Delivery Input Request

DeliveryRequest
NameDescriptionTypeAdditional information
DeliveryMethodID

Delivery Method ID

integer

None.

DeliveryMethodName

Delivery Method Name

string

None.

Active

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

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>