GET v1/Surveys/{surveyId}/Interviewers/{interviewerId}/Assignments/QuotaTargets

User roles allowed to make this request: DomainAdministrator PowerUser RegularUser Supervisor LimitedUser DemoUser

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

Gets a list of levelIds with Target, Successful and SurveySuccessful assigned to an interviewer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
surveyId

Survey Id

string

Required

interviewerId

InterviewerId Id

string

Required

Body Parameters

None.

Response Information

Resource Description

A list of levelIds with Target, Successful and SurveySuccessful

Response Message

Collection of SurveyInterviewerAssignmentQuotaTargetResponse
NameDescriptionTypeAdditional information
LevelId

Survey quota Level Id

string

None.

SurveySuccessful

Survey global successful counts

integer

None.

Target

Interviewer total target

integer

None.

Successful

Interviewer successful counts

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LevelId": "sample string 1",
    "SurveySuccessful": 2,
    "Target": 1,
    "Successful": 3
  },
  {
    "LevelId": "sample string 1",
    "SurveySuccessful": 2,
    "Target": 1,
    "Successful": 3
  }
]

application/xml, text/xml

Sample:
<ArrayOfSurveyInterviewerAssignmentQuotaTargetResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models.SurveyInterviewerAssignment">
  <SurveyInterviewerAssignmentQuotaTargetResponse>
    <LevelId>sample string 1</LevelId>
    <Successful>3</Successful>
    <SurveySuccessful>2</SurveySuccessful>
    <Target>1</Target>
  </SurveyInterviewerAssignmentQuotaTargetResponse>
  <SurveyInterviewerAssignmentQuotaTargetResponse>
    <LevelId>sample string 1</LevelId>
    <Successful>3</Successful>
    <SurveySuccessful>2</SurveySuccessful>
    <Target>1</Target>
  </SurveyInterviewerAssignmentQuotaTargetResponse>
</ArrayOfSurveyInterviewerAssignmentQuotaTargetResponse>