channels: Get and set job channels

Description Usage Arguments Value See Also Examples

Description

Get, set, and replace the “tags” for a job

Usage

1
2
3
job_channel_add(id, channel, verbose = TRUE, ...)

job_channel_remove(id, channel, verbose = TRUE, ...)

Arguments

id

A character string containing an ID for job.

channel

A character string containing the name of a channel, as returned by job_channel_list.

verbose

A logical indicating whether to print additional information about the request.

...

Additional arguments passed to cf_query.

Value

A logical TRUE, or an error.

See Also

job_create

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
## Not run: 
# create new job
f1 <- system.file("templates/instructions1.html", package = "crowdflower")
f2 <- system.file("templates/cml1.xml", package = "crowdflower")
j <- job_create(title = "Job Title", 
               instructions = readChar(f1, nchars = 1e8L),
               cml = readChar(f2, nchars = 1e8L))

# list available channels
ch <- job_channel_list(j)
ch

# add new channel
job_channel_add(j, ch[1])

# remove a channel
job_channel_remove(j, ch[1])

## End(Not run)

cloudyr/crowdflower documentation built on May 13, 2019, 8:20 p.m.