yadirGetBalance {ryandexdirect} | R Documentation |
Get 'Yandex Direct' account balance
Description
Returns settings for shared accounts.
Usage
yadirGetBalance(Logins = getOption("ryandexdirect.user"),
Token = NULL,
AgencyAccount = getOption("ryandexdirect.agency_account"),
TokenPath = yadirTokenPath())
Arguments
Logins |
character vector, your logins at Yandex Direct, require |
Token |
character, your Yandex Direct API Token, require |
AgencyAccount |
Your agency account login, if you get statistic from client account |
TokenPath |
Path to directory where you save credential data |
Value
Data frame
Author(s)
Alexey Seleznev
Examples
## Not run:
### Please choose another TokenPath to save the Login permanently.
aut <- yadirAuth(Login = "login", NewUser = TRUE,
TokenPath = tempdir())
#For get accounts from client account use
my_balance <- yadirGetBalance(Logins = "login",
Token = aut)
#For get accounts from agancy account use
library(ryandexdirect)
aut <- yadirAuth(Login = "agency_login", NewUser = TRUE,
TokenPath = tempdir())
client <- yadirGetClientList(Token = aut)
client_balance <- yadirGetBalance(Logins = client$Login,
AgencyAccount = "agency_login",
Token = aut)
## End(Not run)
[Package ryandexdirect version 3.6.2 Index]