Description Usage Arguments Value Examples
This function allows you to run 3 different RLC operations
1 2 3 4 | oas_run_live(credentials,
action = c('TestLiveCampaigns',
'RunLiveCampaigns', 'LastStatusRLC'),
verbose = FALSE)
|
credentials |
a character string as returned by oas_build_credentials |
action |
a character string in one of the supported run live operations |
verbose |
a boolean indicating whether messages should be printed while making the request |
A list
of the resulting operation
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
my_credentials <- oas_build_credentials('myaccount',
'myusername',
'mypassword')
tlc_result <- oas_run_live(credentials,
action='TestLiveCampaigns')
rlc_result <- oas_run_live(credentials,
action='RunLiveCampaigns')
last_rlc_result <- oas_run_live(credentials,
action='LastStatusRLC')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.