Learn R Programming

MTurkR (version 0.6.17)

DisposeQualificationType: Dispose QualificationType

Description

Dispose of a QualificationType. This deletes the QualificationType, Qualification scores for all workers, and all records thereof.

Usage

DisposeQualificationType(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 dataframe containing the QualificationTypeId and whether the request to dispose was valid.

Details

A function to dispose of a QualificationType that is no longer needed. All information about the QualificationType and all workers' Qualifications of that type are permanently deleted. disposequal() is an alias.

References

http://docs.amazonwebservices.com/AWSMechTurk/latest/AWSMturkAPI/ApiReference_DisposeQualificationTypeOperation.html{API Reference}

See Also

GetQualificationType CreateQualificationType UpdateQualificationType SearchQualificationTypes

Examples

Run this code
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")
DisposeQualificationType(qual1$QualificationTypeId)

Run the code above in your browser using DataLab