GET v1/Surveys/{surveyId}/QuotaVersions

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

Permissions required to make this request: SurveyQuotaFrame.Read Survey.Read

Supports survey simulations

This method retrieves a list of quota frame versions for the specified survey.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
surveyId

The id of the survey to get the quota frame versions for

string

Required

Body Parameters

None.

Response Information

Resource Description

A list of quota frame versions

Response Message

Collection of QuotaFrameVersionModel
NameDescriptionTypeAdditional information
Id

The unique identifier for a quota frame version

string

None.

ETag

The version of the quota frame

string

None.

PublishedDate

The timestamp for when the quota frame was published

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "ETag": "sample string 2",
    "PublishedDate": "2024-05-18T20:40:19.3838406+00:00"
  },
  {
    "Id": "sample string 1",
    "ETag": "sample string 2",
    "PublishedDate": "2024-05-18T20:40:19.3838406+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfQuotaFrameVersionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models">
  <QuotaFrameVersionModel>
    <ETag>sample string 2</ETag>
    <Id>sample string 1</Id>
    <PublishedDate>2024-05-18T20:40:19.3838406+00:00</PublishedDate>
  </QuotaFrameVersionModel>
  <QuotaFrameVersionModel>
    <ETag>sample string 2</ETag>
    <Id>sample string 1</Id>
    <PublishedDate>2024-05-18T20:40:19.3838406+00:00</PublishedDate>
  </QuotaFrameVersionModel>
</ArrayOfQuotaFrameVersionModel>