PUT 1.0/customermanagement/customers/{siteprefix}/{siteid}/updatemultiple

Description

Updates a Customer's settings that are availble to resellers

URI Parameters

Name Description Type Additional information
sitePrefix

Customer's SitePrefix

string

Required

siteID

Customer's siteID

integer

Required

An array of settings in name value formate that are going to be updated

Collection of CustomerSetting
Name Description Type Additional information
DataType

integer

None.

Name

string

None.

Value

string

None.

application/json, text/json

Sample:
[
  {
    "dataType": 1,
    "name": "sample string 2",
    "value": "sample string 3"
  },
  {
    "dataType": 1,
    "name": "sample string 2",
    "value": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerSetting xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <CustomerSetting>
    <Name>sample string 2</Name>
    <Value>sample string 3</Value>
    <DataType>1</DataType>
  </CustomerSetting>
  <CustomerSetting>
    <Name>sample string 2</Name>
    <Value>sample string 3</Value>
    <DataType>1</DataType>
  </CustomerSetting>
</ArrayOfCustomerSetting>

application/x-www-form-urlencoded

Sample:

Sample not available.

None.

None.