POST api/Local/FetchGeneralSettings

Request Information

URI Parameters

None.

Body Parameters

LocalRequestModel
NameDescriptionTypeAdditional information
RequestObject

Object

None.

SyncFromCloud

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "RequestObject": {},
  "SyncFromCloud": true
}

application/xml, text/xml

Sample:
<LocalRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CheckinPortalCloudAPI.Models.Local">
  <RequestObject />
  <SyncFromCloud>true</SyncFromCloud>
</LocalRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

LocalResponseModel
NameDescriptionTypeAdditional information
responseData

Object

None.

result

boolean

None.

responseMessage

string

None.

statusCode

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "responseData": {},
  "result": true,
  "responseMessage": "sample string 3",
  "statusCode": 4
}

application/xml, text/xml

Sample:
<LocalResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CheckinPortalCloudAPI.Models.Local">
  <responseData />
  <responseMessage>sample string 3</responseMessage>
  <result>true</result>
  <statusCode>4</statusCode>
</LocalResponseModel>