GET api/noahserversettings

Retrieves the Remote/Local host (NoahServer) settings. Must have a valid Authorization header.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

NoahServerSettings

NoahServerSettings
NameDescriptionTypeAdditional information
EditOldActionsAllowed

Indicates whether actions from a day before this can be edited.

boolean

None.

NoahVersion

The version of the NoahServer that the App are connected to.

string

None.

AllowPatientManagement

Indicates wether the App are allowed to do Patient management.

boolean

None.

HIPAALogEnabled

Indicates whether it's possible to add an AuditTrail (HIPAA log entry) in Noah.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "EditOldActionsAllowed": true,
  "NoahVersion": "sample string 2",
  "AllowPatientManagement": true,
  "HIPAALogEnabled": true
}

application/xml, text/xml

Sample:
<NoahServerSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Himsa.Noah.Public.Model">
  <AllowPatientManagement>true</AllowPatientManagement>
  <EditOldActionsAllowed>true</EditOldActionsAllowed>
  <HIPAALogEnabled>true</HIPAALogEnabled>
  <NoahVersion>sample string 2</NoahVersion>
</NoahServerSettings>