Learn R Programming

MTurkR (version 0.8.0)

GetQualificationType: Get QualificationType

Description

Get the details of a Qualification Type.

Usage

GetQualificationType(qual, verbose = getOption('MTurkR.verbose', TRUE), ...)

Arguments

qual

A character string containing a QualificationTypeId.

verbose

Optionally print the results of the API request to the standard output. Default is taken from getOption('MTurkR.verbose', TRUE).

...

Additional arguments passed to request.

Value

A data frame containing the QualificationTypeId of the newly created QualificationType and other details as specified in the request.

Details

Retrieve characteristics of a specified QualificationType (as originally specified by CreateQualificationType).

qualtype() is an alias.

References

API Reference

See Also

CreateQualificationType

UpdateQualificationType

DisposeQualificationType

SearchQualificationTypes

Examples

Run this code
# NOT RUN {
qual1 <- 
CreateQualificationType(name="Worked for me before",
    description="This qualification is for people who have worked for me before",
    status = "Active",
    keywords="Worked for me before")
GetQualificationType(qual1$QualificationTypeId)
DisposeQualificationType(qual1$QualificationTypeId)
# }

Run the code above in your browser using DataLab