List Worker Blocks
mturk_list_worker_blocks | R Documentation |
The ListWorkersBlocks operation retrieves a list of Workers who are blocked from working on your HITs¶
Description¶
The ListWorkersBlocks
operation retrieves a list of Workers who are
blocked from working on your HITs.
Usage¶
mturk_list_worker_blocks(NextToken, MaxResults)
Arguments¶
NextToken |
Pagination token |
MaxResults |
Value¶
A list with the following syntax:
list(
NextToken = "string",
NumResults = 123,
WorkerBlocks = list(
list(
WorkerId = "string",
Reason = "string"
)
)
)
Request syntax¶
svc$list_worker_blocks(
NextToken = "string",
MaxResults = 123
)