Skip to content

List Workers With Qualification Type

mturk_list_workers_with_qualification_type R Documentation

The ListWorkersWithQualificationType operation returns all of the Workers that have been associated with a given Qualification type

Description

The list_workers_with_qualification_type operation returns all of the Workers that have been associated with a given Qualification type.

Usage

mturk_list_workers_with_qualification_type(QualificationTypeId, Status,
  NextToken, MaxResults)

Arguments

QualificationTypeId

[required] The ID of the Qualification type of the Qualifications to return.

Status

The status of the Qualifications to return. Can be Granted | Revoked.

NextToken

Pagination Token

MaxResults

Limit the number of results returned.

Value

A list with the following syntax:

list(
  NextToken = "string",
  NumResults = 123,
  Qualifications = list(
    list(
      QualificationTypeId = "string",
      WorkerId = "string",
      GrantTime = as.POSIXct(
        "2015-01-01"
      ),
      IntegerValue = 123,
      LocaleValue = list(
        Country = "string",
        Subdivision = "string"
      ),
      Status = "Granted"|"Revoked"
    )
  )
)

Request syntax

svc$list_workers_with_qualification_type(
  QualificationTypeId = "string",
  Status = "Granted"|"Revoked",
  NextToken = "string",
  MaxResults = 123
)