POST v1/SystemSettings/DeliveryMethodList
Request Information
URI Parameters
None.
Body Parameters
DeliveryRequestName | Description | Type | Additional 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:
Response Information
Resource Description
Collection of DeliveryResponseName | Description | Type | Additional 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>