managed.customer.request: Adwords Managed Customer Service Request

Description Usage Arguments Value See Also Examples

View source: R/managed.customer.request.R

Description

Prepares the body of an XML formatted request for the Adwords managed customer service. Only data retrieval is implemented for now.

Usage

1
2
managed.customer.request(fields = c("Name", "CustomerId"),
  predicates = NULL, start.index = 0, number.of.results = 100)

Arguments

fields

List of fields to select.

predicates

Specifies how an entity (eg. adgroup, campaign, criterion, ad) should be filtered.

start.index

Index of the first result to return with this request. Default is 0.

number.of.results

Maximum number of results to return in this request. Default is 100.

Value

An XML formatted managed customer request.

See Also

get.service

Examples

1
2
3
# Prepare a request to get all account in a MCC that starts with "USA" and doesn't contain "inc".
preds <- list(predicate("Name", "STARTS_WITH_IGNORE_CASE", "USA"), predicate("Name", "DOES_NOT_CONTAIN_IGNORE_CASE", "inc"))
request <- managed.customer.request(fields = c("Name", "CustomerId"), predicates = preds)

adviso/RAdwordsPlus documentation built on Dec. 5, 2019, 3:11 a.m.