POST api/user/updateappsettings

Update appsettings

Request Information

Parameters

NameDescriptionAdditional information
settings

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "serviceURL": "sample string 1",
  "helpURL": "sample string 2",
  "timeOutSeconds": 3,
  "timeOutWarnSeconds": 4,
  "maxWoundImages": 5,
  "maxGeneralImages": 6,
  "userId": 7,
  "annotationBackGroundColor": "sample string 8",
  "isTextbox": true,
  "isCircle": true,
  "isArrow": true,
  "isSquare": true,
  "isTextsizeandColor": true
}

application/xml, text/xml

Sample:
<AppSettingVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WCCrossCutting.Models">
  <AnnotationBackGroundColor>sample string 8</AnnotationBackGroundColor>
  <HelpURL>sample string 2</HelpURL>
  <IsArrow>true</IsArrow>
  <IsCircle>true</IsCircle>
  <IsSquare>true</IsSquare>
  <IsTextbox>true</IsTextbox>
  <IsTextsizeandColor>true</IsTextsizeandColor>
  <MaxGeneralImages>6</MaxGeneralImages>
  <MaxWoundImages>5</MaxWoundImages>
  <ServiceURL>sample string 1</ServiceURL>
  <TimeOutSeconds>3</TimeOutSeconds>
  <TimeOutWarnSeconds>4</TimeOutWarnSeconds>
  <UserId>7</UserId>
</AppSettingVM>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.