oas_run_live: Execute Run Live Campaigns Command

Description Usage Arguments Value Examples

Description

This function allows you to run 3 different RLC operations

Usage

1
2
3
4
oas_run_live(credentials, 
                    action = c('TestLiveCampaigns', 
                               'RunLiveCampaigns', 'LastStatusRLC'), 
                    verbose = FALSE)

Arguments

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

Value

A list of the resulting operation

Examples

 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)

ReportMort/roas documentation built on May 9, 2019, 9:45 a.m.