GET api/deliverysettings
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of DeliverySettingViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliverySettingID |
|
integer |
Range: inclusive between 1 and 2147483647 |
| Name |
|
string |
Required |
| IsUnitBillingAddress |
|
boolean |
None. |
| IsUnitAddress |
|
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"deliverySettingID": 1,
"name": "sample string 2",
"isUnitBillingAddress": true,
"isUnitAddress": true
},
{
"deliverySettingID": 1,
"name": "sample string 2",
"isUnitBillingAddress": true,
"isUnitAddress": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDeliverySettingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<DeliverySettingViewModel>
<DeliverySettingID>1</DeliverySettingID>
<IsUnitAddress>true</IsUnitAddress>
<IsUnitBillingAddress>true</IsUnitBillingAddress>
<Name>sample string 2</Name>
</DeliverySettingViewModel>
<DeliverySettingViewModel>
<DeliverySettingID>1</DeliverySettingID>
<IsUnitAddress>true</IsUnitAddress>
<IsUnitBillingAddress>true</IsUnitBillingAddress>
<Name>sample string 2</Name>
</DeliverySettingViewModel>
</ArrayOfDeliverySettingViewModel>