GET v1/Surveys/{surveyId}/GeneralSettings

User roles allowed to make this request: DomainAdministrator PowerUser RegularUser Supervisor Scripter LimitedUser QuotaManager LocalDomainManager GlobalDomainManager OperationsUser SampleManager RepositoryManager DemoUser All

Permissions required to make this request: Survey.Read

Supports blueprint surveys

Supports survey simulations

Retrieve details of a specific survey general settings.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
surveyId

The id of the survey general setting

string

Required

Body Parameters

None.

Response Information

Resource Description

The details of the survey general setting

Response Message

SurveyGeneralSettingsResponseModel
NameDescriptionTypeAdditional information
Description

The Description of the survey

string

None.

Client

The Client of the survey

string

None.

Name

The Name of the survey

string

None.

ExcludeFromAutomaticCleanup

Indicates whether the survey will be excluded from automatic deletion and stoppage

boolean

None.

Owner

The user id of the new owner of the survey

User

None.

Response Formats

application/json, text/json

Sample:
{
  "Description": "sample string 1",
  "Client": "sample string 2",
  "Name": "sample string 3",
  "ExcludeFromAutomaticCleanup": true,
  "Owner": {
    "Id": "sample string 1",
    "UserName": "sample string 2"
  }
}

application/xml, text/xml

Sample:
<SurveyGeneralSettingsResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models.SurveyGeneralSettings">
  <Client>sample string 2</Client>
  <Description>sample string 1</Description>
  <ExcludeFromAutomaticCleanup>true</ExcludeFromAutomaticCleanup>
  <Name>sample string 3</Name>
  <Owner>
    <Id>sample string 1</Id>
    <UserName>sample string 2</UserName>
  </Owner>
</SurveyGeneralSettingsResponseModel>