PUT 1.0/customermanagement/webconnection/{siteprefix}/{siteid}

Description

Updates the Web Connection (Acquaint Anywhere) settings for a customer

URI Parameters

Name Description Type Additional information
sitePrefix

The Customer's site prefix

string

Required

siteID

The Customer's site id

integer

Required

Name Description Type Additional information
SitePassword

string

Required

ServerName

string

Required

ServerUserName

string

Required

ServerPassword

string

Required

DataBaseUsesSiteID

boolean

Required

Inactive

boolean

Required

RecordRead

boolean

Required

application/json, text/json

Sample:
{
  "sitePassword": "sample string 1",
  "serverName": "sample string 2",
  "serverUserName": "sample string 3",
  "serverPassword": "sample string 4",
  "dataBaseUsesSiteID": true,
  "inactive": true,
  "recordRead": true
}

application/xml, text/xml

Sample:
<WebConnection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <SitePassword>sample string 1</SitePassword>
  <ServerName>sample string 2</ServerName>
  <ServerUserName>sample string 3</ServerUserName>
  <ServerPassword>sample string 4</ServerPassword>
  <DataBaseUsesSiteID>true</DataBaseUsesSiteID>
  <Inactive>true</Inactive>
  <RecordRead>true</RecordRead>
</WebConnection>

application/x-www-form-urlencoded

Sample:

Sample not available.

None.

None.