View source: R/yadirGetCostData.R
yadirGetCostData | R Documentation |
Get data on expenses, impressions and clicks on advertising campaigns, keywords and ads for further loading into 'Google Analytics' source.
yadirGetCostData(
DateFrom = Sys.Date() - 31,
DateTo = Sys.Date() - 1,
Source = 'yandex',
Medium = 'cpc',
IncludeVAT = "YES",
IncludeDiscount = "NO",
Login = getOption("ryandexdirect.user"),
AgencyAccount = getOption("ryandexdirect.agency_account"),
FetchBy = NULL,
Token = NULL,
TokenPath = yadirTokenPath())
DateFrom |
If your select CUSTOM_DATE in DateRangeType you must enter start date in this argument in YYYY-MM-DD format else you can not used this argument |
DateTo |
If your select CUSTOM_DATE in DateRangeType you must enter end date in this argument in YYYY-MM-DD format else you can not used this argument |
Source |
Character, UTM source |
Medium |
Character, UTM medium |
IncludeVAT |
Include or exclude VAT, one of "NO" or "YES" |
IncludeDiscount |
Include or exclude Discount, one of "NO" or "YES" |
Login |
Your Yandex Login |
AgencyAccount |
Your agency account login, if you get statistic from client account |
FetchBy |
Split the query by date range. Allowed values: "DAY", "WEEK", "MONTH", "QUARTER", "YEAR". |
TokenPath |
Path to directory where you save credential data |
Token |
character or list object, your Yandex API Token, you can get this by function yadirGetToken or yadirAuth |
Data frame with cost data
Alexey Seleznev
## Not run:
###
# Use googleAnalyticsR for upload data into Google Analytics
library(googleAnalyticsR)
# load cost data
cost_data <- yadirGetCostData(DateFrom = "2020-05-10",
DateTo = '2020-05-14')
# upload into GA source
ga_custom_upload_file(accountId = xxxx,
webPropertyId = "UA-xxxx-1",
customDataSourceId = 'abcdefg',
cost_data)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.