mturk CreateHIT Operation

From GM-RKB
Jump to navigation Jump to search

An mturk CreateHIT Operation is an mturk operation to create an mturk HIT.



References

2014

2013

my $result = $mturk->CreateHIT(
       Title       => 'Answer a question',
       Description => 'Test HIT from Perl',
       Keywords    => 'hello, world',
       Reward => {
           CurrencyCode => 'USD',
           Amount       => 0.01
       },
       RequesterAnnotation         => 'Test Hit',
       AssignmentDurationInSeconds => 60 * 60,
       AutoApprovalDelayInSeconds  => 60 * 60 * 10,
       MaxAssignments              => 1,
       LifetimeInSeconds           => 60 * 60,
       Question                    => $questionXml
);