Description Usage Arguments Value Examples
View source: R/criteo_budget_info.R
Getting information about Criteo budgets
1 2 3 | criteo_budget_info(tok = criteo_access_token(),
return_columns = c("budgetName", "type", "totalAmount",
"remainingBudget"), active_budgets_only = T)
|
tok |
Criteo access token. By default is call and refresh token automatically. |
return_columns |
vector of column names, by default:
If you want see all columns, use "all" as parameter. All columns:
|
active_budgets_only |
by default, TRUE. |
By default, data frame with active budgets and only 4 columns (this is not all columns).
1 2 3 4 5 6 7 8 | # Get all active budgets
criteo_budget_info()
# Get all exist budgets
criteo_budget_info(active_budgets_only = F)
Get all info about all budgets
criteo_budget_info(return_columns = "all", active_budgets_only = F)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.