POST v1/SystemSettings/DeliveryMethodList
Return Delivery Method List
Request Information
URI Parameters
None.
Body Parameters
Delivery Input Request
DeliveryRequest| Name | Description | Type | Additional 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:
Response Information
Resource Description
Collection of DeliveryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryMethodID |
Delivery Method ID |
integer |
None. |
| DeliveryMethodName |
Delivery Method Name |
string |
None. |
| Active |
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>
