Usage
ChangeHITType(hit = NULL, old.hit.type = NULL, new.hit.type = NULL,
title = NULL, description = NULL, reward = NULL, duration = NULL,
keywords = NULL,
auto.approval.delay = NULL, qual.req = NULL,
keypair = credentials(), print = getOption('MTurkR.print'),
browser = getOption('MTurkR.browser'),
log.requests = getOption('MTurkR.log'),
sandbox = getOption('MTurkR.sandbox'),
validation.test = getOption('MTurkR.test'))
Arguments
hit
An optional character string containing the HITId whose HITTypeId is to be changed, or a vector of character strings containing each of multiple HITIds to be changed.
old.hit.type
An optional character string containing the HITTypeId (or a vector of HITTypeIds) whose HITs are to be changed to the new HITTypeId.
new.hit.type
An optional character string specifying the new HITTypeId that this HIT should be visibly grouped with (and whose properties, e.g. reward amount, this HIT should inherit).
title
An optional character string containing the title for the HITType. All HITs of this HITType will be visibly grouped to workers according to this title.
description
An optional character string containing a description of the HITType. This is visible to workers.
reward
An optional character string containing the per-assignment reward amount, in U.S. Dollars (e.g., 0.15).
duration
An optional character string containing the duration of each HIT, in seconds (for example, as returned by seconds
). keywords
An optional character string containing a comma-separated set of keywords by which workers can search for HITs of this HITType.
auto.approval.delay
An optional character string specifying the amount of time, in seconds (for example, as returned by seconds
), before a submitted assignment is automatically granted. keypair
A two-item character vector containing an AWS Access Key ID in the first position and the corresponding Secret Access Key in the second position. Set default with credentials
. print
Optionally print the results of the API request to the standard output. Default is TRUE
.
browser
Optionally open the request in the default web browser, rather than opening in R. Default is FALSE
.
log.requests
A logical specifying whether API requests should be logged. Default is TRUE
. See readlogfile
for details. sandbox
Optionally execute the request in the MTurk sandbox rather than the live server. Default is FALSE
.
validation.test
A logical specifying whether only the pre-request checks should be conducted and the request URL returned (without executing the request). Default is FALSE
.